@githubredteam · Post #84318 · 15.05.2026 г., 11:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:c2c_platform 👤项目作者:kobussteynn 🛠开发语言: PHP ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-15 11:01:12 📝项目描述: 无描述 🔗点击访问项目地址
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #380 · 21 окт.
Регулярно приходится писать и ревьюить код, где используется PySide2-6. Заметил, что в подавляющем большинстве случаев настройка создаваемых базовых виджетов происходит через методы. Думаю, всем знаком такой способ. Простой пример с кнопкой: button = QPushButton("Click Me") button.setMinimumWidth(300) button.setFlat(True) button.setStyleSheet("font-size: 20pt") button.setToolTip("Super Button") button.clicked.connect(lambda: print("Button clicked")) Но есть и альтернативный способ - настройка через свойства. Это просто ключевые аргументы конструктора класса. Хоть они и не указаны в документации как аргументы, но они есть) Этот код делает тоже самое но с помощью Property button = QPushButton( "Click Me", minimumWidth=300, flat=True, styleSheet="font-size: 20pt", toolTip="Super Button", clicked=lambda: print("Button clicked"), ) Где это может быть полезно ▫️ Это выглядит более аккуратно и коротко, уже повод использовать ▫️ Может использоваться в заполнении лейаута, когда нам не нужно никакое другое взаимодействие с виджетом и поэтому сохранять его в переменную не требуется. Например, лейбл или кнопка. widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) layout.addWidget(QLabel("Button >", alignment=Qt.AlignRight)) layout.addWidget(QPushButton("Click Me", clicked=lambda: print("Button clicked"))) widget.show() Либо так widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) for wd in ( QLabel("Button >", alignment=Qt.AlignRight), QPushButton("Click Me", clicked=lambda: ...) ): layout.addWidget(wd) widget.show() ▫️ Можно хранить настройки в каком-то конфиге или генерировать на лету, после чего передавать как kwargs. kwargs = {"text": "Hello " * 30, "wordWrap": True} my_label = QLabel(**kwargs) Как получить полный список доступных свойств? Эта функция распечатает в терминал все свойства виджета и их текущие значения def print_widget_properties(widget): meta_object = widget.metaObject() for i in range(meta_object.propertyCount()): property_ = meta_object.property(i) property_name = property_.name() property_value = property_.read(widget) print(f"{property_name}: {property_value}") #tricks#qt
Пребарај: #control
@githubredteam · Post #84318 · 15.05.2026 г., 11:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:c2c_platform 👤项目作者:kobussteynn 🛠开发语言: PHP ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-15 11:01:12 📝项目描述: 无描述 🔗点击访问项目地址
@githubredteam · Post #83412 · 08.05.2026 г., 21:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:2026-ei-aoopii-c23 👤项目作者:duartebravo 🛠开发语言: Python ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-08 20:56:15 📝项目描述: Agent: Social Media Autopilot 🔗点击访问项目地址
@githubredteam · Post #83221 · 07.05.2026 г., 14:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:C2vsU-Py-CUDA 👤项目作者:santiagodecima 🛠开发语言: None ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-07 14:02:23 📝项目描述: Este proyecto determina numéricamente las propiedades eléctricas de sistemas electroquímicos basados en semiconductores tipo n mediante un ajuste global y refinado de los datos experimentales de la inversa al cuadrado de la capacitancia total en función del potencial aplicado. 🔗点击访问项目地址
@githubredteam · Post #83122 · 06.05.2026 г., 22:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:Network-Traffic-Analysis-NetSupport-Manager-RAT-Detection 👤项目作者:AKINOLASELIM 🛠开发语言: None ⭐Star数量: 2 | 🍴Fork数量: 0 📅更新时间: 2026-05-06 22:02:27 📝项目描述: Real-world malware traffic analysis as a SOC Analyst — detecting NetSupport Manager RAT C2 communication, beaconing behaviour, and victim profiling from a live PCAP capture. 🔗点击访问项目地址
@githubredteam · Post #82460 · 02.05.2026 г., 10:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:pebble-c25k 👤项目作者:Wyoc 🛠开发语言: C ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-02 10:02:56 📝项目描述: 无描述 🔗点击访问项目地址
@githubredteam · Post #82442 · 02.05.2026 г., 07:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:c2c-secondhand-platform 👤项目作者:wxuhao32 🛠开发语言: Java ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-02 06:59:24 📝项目描述: C2C二手交易平台毕业设计项目 - Vue3 + Spring Boot 🔗点击访问项目地址
@githubredteam · Post #82386 · 02.05.2026 г., 00:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:C213_Projeto1 👤项目作者:mariaclaraig 🛠开发语言: Python ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-05-02 00:02:28 📝项目描述: Projeto 1 da disciplina de Sistemas Embarcados (C213): Projeto de Identificação de Sistemas e Controle PID 🔗点击访问项目地址
@GithubRedTeam · Post #80559 · 16.04.2026 г., 14:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:c2h-screen-control 👤项目作者:Cpmhaoproject 🛠开发语言: HTML ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-04-16 14:02:15 📝项目描述: 无描述 🔗点击访问项目地址
@GithubRedTeam · Post #80410 · 15.04.2026 г., 13:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:MarkLangan_C22470414_FYP 👤项目作者:marklangan 🛠开发语言: HCL ⭐Star数量: 0 | 🍴Fork数量: 0 📅更新时间: 2026-04-15 13:02:11 📝项目描述: 无描述 🔗点击访问项目地址
@GithubRedTeam · Post #80018 · 12.04.2026 г., 15:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:TaoRAT 👤项目作者:mas153 🛠开发语言: Python ⭐Star数量: 1 | 🍴Fork数量: 0 📅更新时间: 2026-04-12 15:03:11 📝项目描述: Control and manage multiple Windows agents remotely using a multi-threaded C++ and Python administration tool with hybrid C2 communication. 🔗点击访问项目地址
@GithubRedTeam · Post #78505 · 02.04.2026 г., 21:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:github-C2 👤项目作者:Kxiandaoyan 🛠开发语言: Rust ⭐Star数量: 7 | 🍴Fork数量: 5 📅更新时间: 2026-04-02 20:59:30 📝项目描述: 基于GitHub Issues API的隐蔽C2框架,支持Windows/Linux,AES-256-GCM加密通信,远程命令执行、文件管理、端口扫描等功能 🔗点击访问项目地址
@GithubRedTeam · Post #78348 · 01.04.2026 г., 22:03
🚨 GitHub 监控消息提醒 🚨发现关键词:#C2#Control 📦项目名称:How-to-install-and-set-up-Hyperk-on-ESP-RP-2040-2350 👤项目作者:satgit62 🛠开发语言: None ⭐Star数量: 2 | 🍴Fork数量: 0 📅更新时间: 2026-04-01 21:57:33 📝项目描述: Guide to a powerful WiFi/LAN LED controller for the ESP8266 and ESP32 families, including S2, S3, C2, C3, C5, and C6, as well as Raspberry Pi Pico RP2040 and RP2350 🔗点击访问项目地址