This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 | exploits/windows/dcerpc/ms07_029_msdns_zonename | [] | |
---|---|---|---|
10000 | exploits/unix/webapp/webmin_show_cgi_exec | [] | |
10000 | exploits/windows/backupexec/remote_agent | [] | |
10000 | exploits/windows/oracle/osb_ndmp_auth | [] | |
10001 | exploits/multi/misc/zend_java_bridge | [] | |
10008 | exploits/windows/misc/gimp_script_fu | [] | |
1000 | exploits/windows/http/altn_webadmin | [] | |
10050 | exploits/unix/misc/zabbix_agent_exec | [] | |
10051 | exploits/linux/misc/zabbix_server_exec | [] | |
10080 | exploits/linux/antivirus/escan_password_exec | [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/soap/ | exploits/freebsd/misc/citrix_netscaler_soap_bof | |
---|---|---|
/glpi/ | exploits/multi/http/glpi_install_rce | |
/invoker/JMXInvokerServlet/ | exploits/multi/http/jboss_invoke_deploy | |
/moodle/ | exploits/multi/http/moodle_cmd_exec | |
/console/ | exploits/multi/http/werkzeug_debug_rce | |
/SiteScope/ | exploits/multi/http/hp_sitescope_issuesiebelcmd | |
/phpwiki/ | exploits/multi/http/phpwiki_ploticus_exec | |
/cuteflow_v.2.11.2/ | exploits/multi/http/cuteflow_upload_exec | |
/phpmyadmin/ | exploits/multi/http/phpmyadmin_preg_replace | |
/blank-struts2/login.action/ | exploits/multi/http/struts_code_exec_parameters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Path "C:\" -Recurse -Include *password*.txt | ForEach-Object{ Write-Output "$($_.FullName)"} | Set-Content “c:\temp\pathtofile.txt" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from exchangelib import DELEGATE, IMPERSONATION, Account, Credentials, ServiceAccount, \ | |
EWSDateTime, EWSTimeZone, Configuration, NTLM, CalendarItem, Message, \ | |
Mailbox, Attendee, Q, ExtendedProperty, FileAttachment, ItemAttachment, \ | |
HTMLBody, Build, Version | |
from exchangelib import DELEGATE, IMPERSONATION, Account, Credentials, \ | |
EWSDateTime, EWSTimeZone, Configuration, NTLM, CalendarItem, Message, \ | |
Mailbox, Attendee, Q | |
from termcolor import colored, cprint | |
import itertools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, urllib, os, sys | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) | |
requests.packages.urllib3.disable_warnings() | |
#https://raw.githubusercontent.com/adamcaudill/EquationGroupLeak/master/Firewall/EXPLOITS/EGBL/EGBL.config | |
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 6.2; rv:30.0) Gecko/20150101 Firefox/32.0", | |
"Accept-Encoding": "gzip, deflate", | |
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import pprint | |
import sys | |
import dns.message | |
import dns.query | |
import dns.rdatatype | |
import dns.resolver | |
import dns.reversename | |
import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import optparse | |
import os | |
pathName='/pentest/hostapd-wpe/certs/' | |
hostapdPath='/pentest/hostapd-wpe/' | |
''' | |
#Example | |
# python /pentest/eap.py -h | |
Usage: eap.py [options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#The below checks if the Wireless Access Points supports FT-PSK key management protocol and how to use the scripts from https://github.com/vanhoefm/krackattacks-scripts to test if the Access Point is vulnerable to KRACK. | |
#The link https://github.com/kristate/krackinfo#vendor-response-complete contains list of vendor responses. | |
$ git clone https://github.com/vanhoefm/krackattacks-scripts | |
$ sh disable-hwcrypto.sh | |
#Reboot the system | |
#Modify /tmp/wpa_supplicant.conf to something similar to the below. | |
wpa_supplicant -D nl80211 -i wlan0 -c/etc/wpa_supplicant.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
//"sync" | |
"fmt" | |
"net/http" | |
"strings" | |
"bufio" | |
"io/ioutil" | |
"archive/zip" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"sync" | |
//"strconv" | |
"io" | |
"net/http" | |
"archive/zip" | |
"path/filepath" | |
"bufio" |