• XSS.stack #1 – первый литературный журнал от юзеров форума

Статья Поиск потенциально уязвимых хостов при помощи сканера nuclei

baykal

(L2) cache
Пользователь
Регистрация
16.03.2021
Сообщения
370
Реакции
838
Привет!

Сегодня мы рассмотрим установку nuclei на vps, отсортируем стандартые шаблоны по ключевому слову, произведем сканирование средствами masscan, nuclei.
И так начнем! Подключаемся к своему VPS удобным для вас способом...
Подключились - теперь нам необходимо установить GO версии 1.19 как рекомендует разработчик софта.

Приступим
Код:
sudo apt-get update
sudo apt-get -y upgrade
Код:
wget https://go.dev/dl/go1.19.linux-amd64.tar.gz
Код:
tar -xvf go1.19.linux-amd64.tar.gz
sudo mv go /usr/local
Код:
export GOROOT=/usr/local/go
export GOPATH=$HOME/Projects/Proj1
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
С установкой GO разобрались, приступаем к установке nuclei
Код:
go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
После завершения установки на всякий случай обновим базу шаблонов.
Код:
nuclei -update-templates

Немного информации о nuclei

Nuclei - это инструмент, используемый для сканирования веб-приложений и служб на предмет потенциальных уязвимостей. Он использует шаблоны, написанные на YAML, для выявления различных типов уязвимостей и может быть настроен для конкретных случаев использования, таких как XSS, SQL injection, RCE. Он также поддерживает применение фильтров и исключение целевых объектов, что делает его универсальным и мощным инструментом для поиска уязвимостей.

Посмотрим все доступные шаблоны, перейдя в каталог nuclei-templates (тоже самое можно проделать посетив оффициальную страницу шаблонов nuclei на Github)
Код:
ls ~/nuclei-templates/
1.png

Теперь отсортируем темплы по ключевым словам внутри YAML шаблонов, ниже приведен пример команды для копирования шаблонов содержащих ключевое слово RCE из дефолтной директории nuclei /nuclei-templates/ в созданую вами ранее директорию.
Код:
grep -rl 'remote.*code.*execution' ~/nuclei-templates/ | xargs cp -t /home/user/nuc/RCE/
Немного отступим от темы сканера nuclei и займемся формированием списка адресов для тестирования, в этом нам поможет masscan.
Код:
masscan -p443 --rate 1300000 --ranges 0.0.0.0-255.255.255.255 --output-format list --output-file test.txt --open-only --randomize-hosts --exclude 255.255.255.255 -v --send-eth --
nuclei принимает листы целей в таком формате [ https://host_ip_(domain) ] так, что нормализуем вывод masscan к нужному nuclei формату.
Код:
awk '{ print "https://" $4 ":" $3 }' test.txt > https_test.txt
На выходе имеем файл содержащий строки https://ip:port

Запускаем nuclei

Вариант запуска с заранее подготовленной директорией шаблонов сосредоточенных на поиск RCE.
Код:
nuclei  -l <https_test.txt> -t /home/user/nuc/RCE/ -o good.txt
Вариант запуска с использованием одного шаблона.
Код:
nuclei  -l <https_test.txt> -t /home/user/nuc/RCE/CVE-2009-1151.yaml -o good.txt
Дожидаемся момента завершения работы сканера и welcome good.txt смотреть, что же мы насобирали.
На этом все. Пока!

Автор @HuMGat
 
Pure gold. thanks a lot brat.

Regarding the VPS, to play with masscan and nuclei, what "basic" specs do you recommend?
 
Вообще замечательно, единственный нюанс, что если сканить по всем RCE и залетает пару хаников, то в гудах результаты такие, будто ты во сне и уже карманы деньгами набиваешь)
 
Вопрос по masscan.
Можно ли (и нужно ли) проксировать запросы? Я предполагаю, что может прилететь абуза на сервер за такое количество запросов, если не использовать какой то промежуточный узел.
Возможно ли такое, что masscan будет пропускать таргеты, из за того, что айпи сервера "грязный"?
 
Вопрос по masscan.
Можно ли (и нужно ли) проксировать запросы? Я предполагаю, что может прилететь абуза на сервер за такое количество запросов, если не использовать какой то промежуточный узел.
Возможно ли такое, что masscan будет пропускать таргеты, из за того, что айпи сервера "грязный"?
В теории, --randomize-hosts может уменьшить шансы такой ситуации
 
А для чего вообще нужен masscan?Есть ведь тот же shodan,где хотябы можно выбрать нужное гео,или я чего-то не понимаю?
бытует мнение, что далеко не все попадает в шодан. Так же, как и в другие подобные сервисы. Нигде не слышал, чтоб парни, которые занимаются деятельностью, которую нельзя называть, находили энтрипоинты в шодане)
 
бытует мнение, что далеко не все попадает в шодан. Так же, как и в другие подобные сервисы. Нигде не слышал, чтоб парни, которые занимаются деятельностью, которую нельзя называть, находили энтрипоинты в шодане)
Да,ты прав пожалуй,ибо из 5к вулн айпи,мне попалось 10 компов.
 
Пожалуйста, обратите внимание, что пользователь заблокирован
С установкой GO разобрались
Не работает, вот так работает на Debian 11:
wget https://go.dev/dl/go1.24.5.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local/ -xzf go1.24.5.linux-amd64.tar.gz
nano ~/.bashrc
добавляем:
Код:
#Go Path Variables
export GOPATH=/root/go-workspace
export GOROOT=/usr/local/go
PATH=$PATH:$GOROOT/bin/:$GOPATH/bin
source ~/.bashrc
go version
 
Пожалуйста, обратите внимание, что пользователь заблокирован
посоветуйте актуальные и не очень паблик темплайты под nuclei, в ответ плюсану...
Тут публичные правда, но тем не менее:
///https://github.com/ARPSyndicate/kenzer-templates
///https://github.com/daffainfo/nuclei-templates
///https://github.com/projectdiscovery/nuclei-templates
///https://github.com/protectai/ai-exploits/tree/0df6408cce662cfc953757534ffc521ba13c6aca/anything-llm/nuclei-templates

PS:
 
Последнее редактирование:
Тулза для сбора и скачивания -> https://github.com/AggressiveUser/AllForOne.git

Весь список вносим в PleaseUpdateMe.txt
На данный момент насобиралось:

Код:
https://gist.github.com/0x240x23elu
https://gist.github.com/ResistanceIsUseless/e46848f67706a8aa1205c9d2866bff31
https://github.com/0XParthJ/Nuclei-Templates
https://github.com/0x20c/CVE-2024-4577-nuclei
https://github.com/0x4d61686469/nuclei-private-templates
https://github.com/0x71rex/0-Nuclei-Templates
https://github.com/0x71rex/0-fuzzing-templates
https://github.com/0x727/ObserverWard
https://github.com/0x727/ObserverWard_0x727
https://github.com/0xAwali/Blind-SSRF
https://github.com/0xAwali/Virtual-Host
https://github.com/0xBl4nk/ssti-detection-nuclei
https://github.com/0xElkot/My-Nuclei-Templates
https://github.com/0xKayala/Custom-Nuclei-Templates
https://github.com/0xPugal/my-nuclei-templates
https://github.com/0xPugazh/my-nuclei-templates
https://github.com/0xSojalSec/Nuclei-Templates-API-Linkfinder
https://github.com/0xSojalSec/Nuclei-Templates-Collection
https://github.com/0xSojalSec/Nuclei-TemplatesNuclei-Templates-CVE-2017-17736
https://github.com/0xSojalSec/kenzer-templates
https://github.com/0xSojalSec/my-nuclei-templates-1
https://github.com/0xSojalSec/nuclei-templates-4
https://github.com/0xSojalSec/nuclei-templates-5
https://github.com/0xSojalSec/nuclei-templates-websphere-portal-preauth-ssrf
https://github.com/0xSojalSec/nuclei_templates-SymfonyRCE
https://github.com/0xSojalSec/templates-nuclei-Oracle-OAM---XSS
https://github.com/0xSojalSec/templatesallnuclei
https://github.com/0xc4sper0/Nuclei-templates
https://github.com/0xdln1/nuclei-templates
https://github.com/0xmaximus/final_freaking_nuclei_templates
https://github.com/0xr2r/templates-nucleir2r
https://github.com/0xsyr0/nuclei-templates
https://github.com/10kHacktech/nuclei_templates
https://github.com/1dayluo/My-Nuclei-Templates
https://github.com/1in9e/my-nuclei-templates
https://github.com/228Tapochek228/nuclei_templates
https://github.com/2jung/nuclei-templates
https://github.com/5cr1pt/templates
https://github.com/6mile/nextjs-CVE-2025-29927
https://github.com/A3g00n/All-Nuclei-Templates
https://github.com/ARPSyndicate/kenzer-templates
https://github.com/Ademking/CVE-2025-49113-nuclei-template
https://github.com/Aituglo/nuclei-templates
https://github.com/Akokonunes/Private-Nuclei-Templates
https://github.com/AliSh3ikhi/sslei
https://github.com/Andrey-oss/nuclei-templates
https://github.com/Anja-dhnd/templates4nuclei
https://github.com/Ankitspandey07/Nuclei_Templates_Collection_for_VAPT
https://github.com/Arkango/identityserver4-auth-bypass-nuclei-templates
https://github.com/Arvinthksrct/alltemplate
https://github.com/AshiqurEmon/nuclei_templates
https://github.com/AshiqurEmon/nuclei_templates.git
https://github.com/BagheeraAltered/FuzzingTemplate
https://github.com/BattalFaikAktas/custom-nuclei-templates
https://github.com/BeRserKerSec/CVE-2021-26084-Nuclei-template
https://github.com/Caddyshack2175/nuclei-custom-templates
https://github.com/CharanRayudu/Custom-Nuclei-Templates
https://github.com/ChiaraNRTT96/BountySkill
https://github.com/Christbowel/CVE-2024-25600_Nuclei-Template
https://github.com/ChristianWeiler/custom-nuclei-templates
https://github.com/Co5mos/nuclei-tps
https://github.com/Dalaho-bangin/my_nuclei_templates
https://github.com/Dalaho-bangin/nuclei-templates2
https://github.com/Deep2142004/Nuclei-Templates
https://github.com/Deepparasiya/Nuclei-Templates
https://github.com/DiabloHTB/Nuclei-Template-CVE-2024-1561
https://github.com/DoubleTakes/nuclei-templates
https://github.com/DrakenKun-cyber/Templates
https://github.com/EchelOneZero/redmc_custom_templates_nuclei
https://github.com/Elsfa7-110/log4jNuclei
https://github.com/Elsfa7-110/mynuclei-templates
https://github.com/Engineer-kimu/Nuclei-templates
https://github.com/ErenCanOzmn/Dizmana-nuclei-collection
https://github.com/Erenlancaster/CVE-2021-46704
https://github.com/EslamMonex/subdomain-takeover
https://github.com/Esonhugh/public-nuclei-template
https://github.com/ExpLangcn/NucleiTP
https://github.com/ExpLangcn/SiftScan
https://github.com/Facucuervo87/openssl-3.0.4-template
https://github.com/Fla4sh/Nuclei-Templates-Collection
https://github.com/GlennPegden2/misc-nuclei-scripts
https://github.com/Gotcha-1G/CVE-2022-42889
https://github.com/Hack4rLIFE/CVE-2022-42889
https://github.com/Hackhzs242/nuclei-templates-collection
https://github.com/Harish4948/Nuclei-Templates
https://github.com/Hc33/nuse
https://github.com/HernanRodriguez1/ScanReflectedSSTI
https://github.com/HideNsec/nuclei-bitrix-templates
https://github.com/Hunt2behunter/nuclei-templates
https://github.com/Jagomeiister/nuclei-templates
https://github.com/JohnDoeAnonITA/NucleiTemplatePRV
https://github.com/Josekutty-K/nuclei-templates
https://github.com/JoshMorrison99/my-nuceli-templates
https://github.com/JoshMorrison99/url-based-nuclei-templates
https://github.com/K3ysTr0K3R/Custom-Nuclei-Templates
https://github.com/Kaue-Navarro/Templates-kaue-nuclei
https://github.com/KeepHowling/all_freaking_nuclei_templates
https://github.com/Kennyslaboratory/Nuclei-Templates
https://github.com/KhukuriRimal/CustomNucleiTemplates
https://github.com/Kuray12/prv8_nuclei_templates
https://github.com/LeDoubleTake/nuclei-templates
https://github.com/Linuxinet/mobile-nuclei-templates
https://github.com/Linuxinet/nuclei-templates
https://github.com/Loftven/BIZONE_WAF_DETECt
https://github.com/Lopseg/nuclei-c-templates
https://github.com/Lu3ky13/Authorization-Nuclei-Templates
https://github.com/MR-pentestGuy/nuclei-templates
https://github.com/Mamilate/3-Nuclei-Templates
https://github.com/MikeeI/nuclei-templates
https://github.com/Mohameddiv/My-Nuclei-Templates
https://github.com/Mohsenalmamun/Nuclei-Template
https://github.com/Mr-B0hl00l/nuclei-templates
https://github.com/Mr-xn/CVE-2023-23333
https://github.com/MrCl0wnLab/Nuclei-Template-CVE-2022-1388-BIG-IP-iControl-REST-Exposed
https://github.com/MrCl0wnLab/Nuclei-Template-Exploit-F5-BIG-IP-iControl-REST-Auth-Bypass-RCE-Command-Parameter
https://github.com/MuhammadWaseem29/Nuclei-templates-waseem
https://github.com/N-N33/Community-Nuclei-Templates
https://github.com/NagliNagli/random-nuclei-templates
https://github.com/NightRang3r/misc_nuclei_templates
https://github.com/Nithissh0708/Custom-Nuclei-Templates
https://github.com/NitinYadav00/My-Nuclei-Templates
https://github.com/NoRed0x/nored0x-Nuclei-Templates
https://github.com/Odayex/Random-Nuclei-Templates
https://github.com/Pavan-Alapati/nuclei-templates
https://github.com/PedroF-369/nuclei_templates
https://github.com/PedroFerreira97/nuclei_templates
https://github.com/Pr0t0c01/CVEs
https://github.com/Pr0t0c01/Custom-Nuclei-Templates
https://github.com/R-s0n/Custom_Vuln_Scan_Templates
https://github.com/Ra7mo0on/nuclei-templates
https://github.com/Rabb1ter/nuclei-templates
https://github.com/RajaUzairAbdullah/nuclei-templates
https://github.com/RamahProgrammer/All-custom-Nuclei-templates
https://github.com/RandomRobbieBF/nuclei-drupal-sa
https://github.com/Red-Darkin/Custom-Nuclei-Templates
https://github.com/ReksySec/3Nuclei-Templates
https://github.com/ReksySec/3Nucleit-Templates
https://github.com/RootHarpy/CVE-2025-25163-Nuclei-Template
https://github.com/RootHarpy/CVE-2025-5815-Nuclei-Template
https://github.com/RootKRD/NucleiBoOM
https://github.com/SAGEof6iixPATHS/cent
https://github.com/SUPRAAA-1337/Nuclei_CVE-2025-31161_CVE-2025-2825
https://github.com/Saboor-Hakimi/CVE-2023-23752
https://github.com/Sachinart/manual-nuclei-templates
https://github.com/Saimonkabir/Nuclei-Templates
https://github.com/Saitle/Yamilicious
https://github.com/Sajibekanti/Nuclei_templates
https://github.com/SalehLardhi/nuclei-wp-config-php
https://github.com/Saptak9983/Nuclei-Template
https://github.com/SecTheBit/CVE-2022-1388
https://github.com/ShadowHackrs/Nuclei-templates
https://github.com/Shakilll/my_nuclei_templates
https://github.com/ShangRui-hash/my-nuclei-templates
https://github.com/ShirasawaSama/ShannxiNucleinCollection
https://github.com/SirAppSec/nuclei-template-generator-log4j
https://github.com/SirBugs/Priv8-Nuclei-Templates
https://github.com/Str1am/my-nuclei-templates
https://github.com/SumedhDawadi/Custom-Nuclei-Template
https://github.com/SumedhDawadi/Nuclei_Template_Subdomain_Takeover
https://github.com/Sysc4ll3r/CVE-2024-4577
https://github.com/System00-Security/backflow
https://github.com/T4t4ru/nuclei-templates
https://github.com/TehanG07/nuclei-templates-collection
https://github.com/Term1N8/nuclei-templates
https://github.com/TolgaTD/Nuclei-Custom-Templates
https://github.com/Tykerdestroy/Bug-bounty-custom-templates
https://github.com/U53RW4R3/nuclei-fuzzer-templates
https://github.com/UltimateSec/ultimaste-nuclei-templates
https://github.com/UnaPibaGeek/honeypots-detection
https://github.com/Unrealisedd/nuclei-templates
https://github.com/V0idC0de/dir-listing-iis-test
https://github.com/VikingCloud/nuclei-templates-deleteme1
https://github.com/ViktorMares/geoserver-nuclei-template
https://github.com/Vulker111/nuclei-templates
https://github.com/VulnExpo/nuclei-templates
https://github.com/W01fh4cker/nucleiTemplatesClassifier
https://github.com/YashVardhanTrip/nuclei-templates
https://github.com/YashVardhanTrip/nuclei-templates-initial-access
https://github.com/YashVardhanTrip/nuclei-templates-initial-access       
https://github.com/YouGina/nuclei-templates
https://github.com/ZephrFish/CVE-2024-4577-PHP-RCE
https://github.com/ZoomerTedJackson/Salesforce-ContentDocument-DetectorNuclei-Template
https://github.com/abbycantcode/Nuclei-Template
https://github.com/abbycantcode/collection-of-templates
https://github.com/abh2technology/abh2-custom-templates-nucleiengine
https://github.com/abletsoff/custom-nuclei-templates
https://github.com/adampielak/nuclei-templates
https://github.com/adibarsyad/nuclei-ios
https://github.com/adibarsyad/nuclei-jsp-source-code-review
https://github.com/aels/CVE-2022-37042
https://github.com/ahmedalroky/nuclei-templates
https://github.com/akincibor/CVE-2022-27925
https://github.com/al00000000al/my_nuclei_templates
https://github.com/al4xs/nuclei-templates
https://github.com/alexrydzak/rydzak-nuclei-templates
https://github.com/alvinbbbssss/nuclei-templates
https://github.com/am0nt31r0/custom-nuclei-templates
https://github.com/andersonmv/Nuclei_Templates
https://github.com/anmolksachan/nuclei-templates
https://github.com/aravazhimdr/unauth-database-nuclei
https://github.com/aredspy/CVE-2021-41182-Tester
https://github.com/atlassion/nuclei-custom-dsl
https://github.com/attacker-codeninja/My-Nuclei-Templates-2
https://github.com/ayadim/Nuclei-bug-hunter
https://github.com/ayoubfathi/leaky-paths
https://github.com/b4dboy17/badboy_17-Nuclei-Templates-Collection
https://github.com/badboy-sft/badboy_17-Nuclei-Templates-Collection
https://github.com/badboycxcc/CVE-2023-24100
https://github.com/baharebenesbordi/Nuclei-Templates
https://github.com/banditzCyber0x/template
https://github.com/bbhunter/custom-nuclei-templates
https://github.com/bhataasim1/PersonalTemplates
https://github.com/biero-el-corridor/ICS_CPS_nuclei_template
https://github.com/binod235/nuclei-templates-and-reports
https://github.com/bjhulst/nuclei-custom-templates
https://github.com/blackvitasoy/nuclei_templates
https://github.com/blazeinfosec/nuclei-templates
https://github.com/boobooHQ/private_templates
https://github.com/br0wnst4n11/Custom_Nuclei_Templates
https://github.com/brinhosa/brinhosa-nuclei-templates
https://github.com/bufferbandit/gitScanNucleiTemplate
https://github.com/bug-vs-me/WPML-XSS
https://github.com/bug-vs-me/nuclei
https://github.com/bugbountydude/Nuclei-TamplatesBackup
https://github.com/byt3loss/Nuclei-Blues
https://github.com/byt3n33dl3/thc-Nuclei
https://github.com/c-sh0/nuclei_templates
https://github.com/c3l3si4n/malicious_nuclei_templates
https://github.com/c3rrberu5/CVE-2024-24919
https://github.com/chouaibhm/foulenzer-templates
https://github.com/chudamax/custom_nuclei_templates
https://github.com/cihanmehmet/nuclei-custom-template
https://github.com/cipher387/juicyinfo-nuclei-templates
https://github.com/clarkvoss/Nuclei-Templates
https://github.com/cleverg0d/bitrix-nuclei-templates
https://github.com/coffinxp/nuclei-templates
https://github.com/coldrainh/nuclei-ByMyself
https://github.com/compr00t/nuclei-templates
https://github.com/coookie1010/nuclei-template
https://github.com/cyb3r-w0lf/nuclei-template-collection
https://github.com/cyberheartmi9/Proxyshell-Scanner
https://github.com/cybershadowvps/Nuclei-Templates-Collection
https://github.com/cybershadowvps/coffinxp-nuclei-templates
https://github.com/d3sca/Nuclei_Templates
https://github.com/daffainfo/my-nuclei-templates
https://github.com/damon-sec/Nuclei-templates-Collection
https://github.com/damon-sec/TCSZ-Nuclei
https://github.com/darses/nuclei-templates
https://github.com/dat-ayush/custom-nuclei-templates
https://github.com/davidfortytwo/GetNucleiTemplates
https://github.com/dk4trin/templates-nuclei
https://github.com/donniekramer8/Nuclei-seg-collection
https://github.com/drfabiocastro/certwatcher-templates
https://github.com/e1abrador/SpringCorePoC.sh
https://github.com/ed-red/redmc_custom_templates_nuclei
https://github.com/edoardottt/RFDos-Scanner
https://github.com/edoardottt/missing-cve-nuclei-templates
https://github.com/ekinsb/Nuclei-Templates
https://github.com/emadshanab/Nuclei-Templates-Collection
https://github.com/emadshanab/custom-nuclei-template-Subdomain_Takeover_Checker
https://github.com/emadshanab/nuclei-bitrix-templates
https://github.com/emadshanab/nuclei-templates25
https://github.com/emadshanab/nucleiDB
https://github.com/emanueldosreis/CVE-2024-38856
https://github.com/emo-crab/observer_ward
https://github.com/emo-crab/scap-rs
https://github.com/erengozaydin/Nuclei-Templates
https://github.com/erickfernandox/nuclei-templates
https://github.com/esetal/nuclei-bb-templates
https://github.com/ethicalhackingplayground/erebus-templates
https://github.com/exploit-io/nuclei-fuzz-templates
https://github.com/exploit-io/nuclei-templates
https://github.com/ezm4n2k/Nuclei-Template-in-the-Wild
https://github.com/fostane/my-nuclei-templates-1
https://github.com/foulenzer/foulenzer-templates
https://github.com/freakyclown/Nuclei_templates
https://github.com/freelancermijan/custom-nuclei-templates
https://github.com/geeknik/nuclei-templates-1
https://github.com/geeknik/the-nuclei-templates
https://github.com/glyptho/templatesallnuclei
https://github.com/h0tak88r/nuclei_templates
https://github.com/h4ndsh/nuclei-templates
https://github.com/hackerhijeck/Fuzzing_with_nuclei
https://github.com/hackintoanetwork/nuclei-priv-templates
https://github.com/hanc00l/some_nuclei_templates
https://github.com/hossamshady11/nuclei-templates-private
https://github.com/huseyinstif/CVE-2025-24016-Nuclei-Template
https://github.com/huynq55-v2/nuclei-xss-templates
https://github.com/iamunixtz/Priv8-nuclei-templates
https://github.com/ibaiw/nuclei_templates
https://github.com/im403/nuclei-temp
https://github.com/imbas007/CVE-2025-24813-apache-tomcat
https://github.com/imbas007/CVE-2025-30208-template
https://github.com/isong0623/Nucleic-Acid-Collection-Chrome-Plugin
https://github.com/isong0623/Nucleic-Acid-Collection-Management-Platform
https://github.com/javaongsan/nuclei-templates
https://github.com/jhonnybonny/nuclei-templates
https://github.com/jhonnybonny/nuclei-templates-bitrix
https://github.com/jiniyasshah/nuclei-templates
https://github.com/jinji9630/jinjo-nuclei-templates
https://github.com/joanbono/nuclei-templates
https://github.com/juanschallibaum/CVE-2024-38473-Nuclei-Template
https://github.com/justmumu/SpringShell
https://github.com/k00kx/nuclei-templates
https://github.com/k0imet/Nuclei-Templates
https://github.com/kaanatmacaa/CVE-2024-23897
https://github.com/kab33r/nuclei-templates
https://github.com/kabilan1290/templates
https://github.com/kh4sh3i/CVE-2022-23131
https://github.com/kh4sh3i/DevSecOps
https://github.com/kh4sh3i/Nextcloud-Pentesting
https://github.com/kh4sh3i/Webmin-CVE
https://github.com/kh4sh3i/nuclei-templates
https://github.com/khoidt2/nuclei-templates
https://github.com/komomon/Komo
https://github.com/konopkalab/Pipeline-SingleCellRNASeq
https://github.com/learnerboy88/CVE-2023-29489
https://github.com/linuxadi/40k-nuclei-templates
https://github.com/lliwi/nuclei-repo-hunter
https://github.com/lobuhi/nucleitemplates
https://github.com/lsr00ter/templates
https://github.com/luck-ying/Library-YAML-POC
https://github.com/lupedsagaces/my-nuclei-templates
https://github.com/m-tabarik/nuclei-templates
https://github.com/madisec/nuclei-templates
https://github.com/malectricasoftware/SwaggerX
https://github.com/manasmbellani/nuclei-templates
https://github.com/marcositu/nuclei-custom-templates
https://github.com/mastersir-lab/nuclei-yaml-poc
https://github.com/maw3six/custom-template-nuclei-50k
https://github.com/mbskter/Masscan2Httpx2Nuclei-Xray
https://github.com/mdsabbirkhan/0xPugazh-my-nuclei-templates
https://github.com/mdube99/custom-nuclei-templates
https://github.com/mdube99/nuclei-templates
https://github.com/medbsq/ncl
https://github.com/megamindmeg/Templates
https://github.com/meme-lord/Custom-Nuclei-Templates
https://github.com/mertugur/nuclei-templates
https://github.com/microphone-mathematics/custom-nuclei-templates
https://github.com/milo2012/nuclei-templates-others
https://github.com/moften/CVE-2025-31324-NUCLEI
https://github.com/mosesrenegade/nuclei-templates
https://github.com/muhammedalish/all-nuclei-templates
https://github.com/myuyu/nuclei-templates
https://github.com/n00bcooD3R/collection-of-nuclei-templates
https://github.com/n0a/nuclei-custom-rules
https://github.com/n1f2c3/mytemplates
https://github.com/nairuzabulhul/nuclei-template-cve-2025-31324-check
https://github.com/narasimha5x5/nuclei-templates
https://github.com/narasimhareddy5x5/nuclei-templates
https://github.com/nicholasaleks/NucleiGPT
https://github.com/nikhilhvr/nuclei-templates
https://github.com/nirajdhalani/nuclei_templates_collection
https://github.com/niranc/Nuclei-personal-templates
https://github.com/nirsarkar/Nuclei-Templates-Collection
https://github.com/nischalbijukchhe/specific-nuclei-templates
https://github.com/nkbeast/private-nuclei-templates
https://github.com/nocomp/nuclei-templates
https://github.com/notnotnotveg/nuclei-custom-templates
https://github.com/nullfuzz-pentest/custom-nuclei-templates
https://github.com/numanturle/CVE-2022-41040
https://github.com/numanturle/Log4jNuclei
https://github.com/nuts7/CVE-2023-27372
https://github.com/nvsecurity/nightvision-nuclei-templates
https://github.com/obreinx/nuceli-templates
https://github.com/optiv/mobile-nuclei-templates
https://github.com/p0ch4t/nuclei-special-templates
https://github.com/p3n73st3r/Nuclei-Templates
https://github.com/pacho15/mynuclei_templates
https://github.com/panch0r3d/nuclei-templates
https://github.com/pdelteil/BugBountyReportTemplates
https://github.com/peanuth8r/Nuclei_Templates
https://github.com/pentest-dev/Profesional-Nuclei-Templates
https://github.com/perplext/echteeteepee
https://github.com/pikpikcu/my-nuclei-templates
https://github.com/pikpikcu/nuclei-fuzz
https://github.com/pikpikcu/nuclei-templates
https://github.com/ping-0day/templates
https://github.com/polling-repo-continua/KozinTemplates
https://github.com/praetorian-inc/chariot-launch-nuclei-templates
https://github.com/praetorian-inc/zeroqlik-detect
https://github.com/primension/nuclei-templates
https://github.com/projectdiscovery/fuzzing-templates
https://github.com/projectdiscovery/nuclei-templates
https://github.com/psc4re/nuclei-templates
https://github.com/ptyspawnbinbash/template-enhancer
https://github.com/pushpak-11/customTemplates
https://github.com/pushpak-11/nuclei-templates
https://github.com/qaisarafridi/MY-Nuclei-Templates
https://github.com/r3dcl1ff/Symfony-Fuck
https://github.com/r3dcl1ff/nuclei-templates
https://github.com/rafaelcaria/Nuclei-Templates
https://github.com/rafaelwdornelas/my-nuclei-templates
https://github.com/rahul-nakum14/Recon
https://github.com/rahulkadavil/nuclei-templates
https://github.com/randomstr1ng/nuclei-sap-templates
https://github.com/rayanchalise/PRIV_NUCLEII
https://github.com/redteambrasil/nuclei-templates
https://github.com/ree4pwn/my-nuclei-templates
https://github.com/reewardius/interested-nuclei-templates
https://github.com/reewardius/log4shell-templates
https://github.com/reewardius/mytemplates-log4shell
https://github.com/reewardius/nuclei-fast-templates
https://github.com/reewardius/nuclei-special-templates
https://github.com/reewardius/nuclei-templates
https://github.com/ricardomaia/nuclei-template-generator-for-wordpress-plugins
https://github.com/rix4uni/BugBountyTips
https://github.com/robotshell/magicRecon
https://github.com/rutgerhrm/valid8
https://github.com/rxerium/CISA-KEV
https://github.com/rzizah/private-nuclei-template
https://github.com/sadnansakin/my-nuclei-templates
https://github.com/samy1937/mynuclei_templates
https://github.com/sancrusader/Prv8-Nuclei-Templates
https://github.com/sandimf/Prv8-Nuclei-Templates
https://github.com/sardine-web/polaris-web-reflected-xss.git
https://github.com/schooldropout1337/nuclei-templates
https://github.com/securitytaters/nuclei-templates
https://github.com/securitytest3r/nuclei_templates_work
https://github.com/sharathkramadas/k8s-nuclei-templates
https://github.com/shifa123/detections
https://github.com/shockingbonu/CVE-2024-4577-PHP-RCE
https://github.com/shubham-rooter/Nuclei-Template-Collection
https://github.com/shubham-rooter/Nuclei-custom-templates
https://github.com/sklnhunt/custom-nuclei-templates
https://github.com/sl4x0/NC-Templates
https://github.com/smaranchand/nuclei-templates
https://github.com/smn666/Nuclei_templates_2024
https://github.com/soapffz/myown-nuclei-poc
https://github.com/sobinge/nuclei-templates
https://github.com/solo10010/solo-nuclei-templates
https://github.com/soumya123raj/Nuclei
https://github.com/souzomain/mytemplates
https://github.com/srkgupta/cent-nuclei-templates
https://github.com/stevemason/nuclei-template-forked-daapd-path-traversal
https://github.com/stuxctf/nuclei-templates-stux
https://github.com/sudouday/nuclei-templates
https://github.com/superhexa/nuclei-templates
https://github.com/sushant-kamble/mynuclei-template
https://github.com/sylncereyes/The-Nuclei-Templates
https://github.com/tamimhasan404/Custom-Nuclei-Templates-404
https://github.com/tamimhasan404/Open-Source-Nuclei-Templates-Downloader
https://github.com/templatesss/Nuclei-templatesllkl
https://github.com/test502git/log4j-fuzz-head-poc
https://github.com/tgr420/nuclei-templates
https://github.com/th3-r3sistanc3/nuclei-templates
https://github.com/th3r4id/nuclei-templates
https://github.com/thanhnx9/nuclei-templates-cutomer
https://github.com/thebrnwal/Content-Injection-Nuclei-Script
https://github.com/thecyberneh/nuclei-templatess
https://github.com/thecybertix/Nuclei-templates
https://github.com/thelabda/labdanuclei
https://github.com/thelabda/nuclei-templates
https://github.com/themastersunil/Nuclei-TamplatesBackup
https://github.com/themastersunil/nucleiDB
https://github.com/themoonbaba/private_templates
https://github.com/topscoder/nuclei-wordfence-cve
https://github.com/topscoder/nuclei-zero-day
https://github.com/toramanemre/apache-solr-log4j-CVE-2021-44228
https://github.com/toramanemre/log4j-rce-detect-waf-bypass
https://github.com/trickest/log4j
https://github.com/trungkay2/Nuclei-template
https://github.com/ts4rin4/templates4nuclei
https://github.com/twseptian/custom-nuclei-templates
https://github.com/umityn/my-nuclei-templates
https://github.com/v3l4r10/Nuclei-Templates
https://github.com/vaampz/priv8-Nuclei
https://github.com/valaDevs/env-js-nuclei
https://github.com/valaDevs/nuclei-backupfile-finder
https://github.com/vidocsecurity/templates
https://github.com/vijay922/XXE-FUZZ
https://github.com/vishal12300/all_nuclei_templatess
https://github.com/vsh00t/nuclei-templates
https://github.com/vulnspace/nuclei-templates
https://github.com/wasp76b/nuclei-templates
https://github.com/wearetyomsmnv/llm_integrated_nuclei_templates
https://github.com/websecresearch/nucleirecordloginsession
https://github.com/windyGarlic/my-nuclei-templates
https://github.com/windyGarlic/nuclei-templates
https://github.com/wooluo/nuclei-templates-2025hw
https://github.com/wr00t/templates
https://github.com/xaitx/CVE-2025-30208
https://github.com/xcode0xbug/Nuclei-Private-YAML-Templates
https://github.com/xelemental/Nuclei-Templates
https://github.com/xenigmus/nuclei-installer
https://github.com/xiewentu/yonyou-nuclei-templates
https://github.com/xinZa1/template
https://github.com/xjhonly/nuclei-templates
https://github.com/xplt-r/nuclei-templates
https://github.com/xungzzz/CVE-2024-4956
https://github.com/yarovit-developer/nuclei-templates
https://github.com/yashrupavatiya26/custom-nuclei-template
https://github.com/yavolo/nuclei-templates
https://github.com/yelaco/juice-shop-nuclei-templates
https://github.com/yueyejian13/personal-nuclei-templates
https://github.com/z3bd/nuclei-templates
https://github.com/zer0yu/Open-PoC
https://github.com/zerbaliy3v/custom-nuclei-templates
https://github.com/zeronine9/nuclei_Stuff
https://github.com/zinminphyo0/KozinTemplates
https://github.com/zodmagus/z0ds3c-Nuclei-Templates
 


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх