View shodan_ports.txt
This file contains 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
7 | |
11 | |
13 | |
15 | |
17 | |
19 | |
20 | |
21 | |
22 | |
23 |
View cod.py
This file contains 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
# Author: Somdev Sangwan (@s0md3v) | |
# | |
# GPL v3 License | |
# Copyright 2021 Somdev Sangwan | |
import itertools | |
attachments = { | |
'tactical suppressor': { | |
'type': 'muzzle', |
View waffer.py
This file contains 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 | |
with open("events", "r") as events: | |
for event in events: | |
event = event.rstrip("\n") | |
print(requests.get("http://game1.aliyundemo.com/demo/xss.php?name=<x/%s=" % event).status_code, event) |
View events
This file contains 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
bruh | |
onabort | |
onactivate | |
onafterprint | |
onafterscriptexecute | |
onafterupdate | |
onanimationend | |
onanimationiteration | |
onanimationstart | |
onariarequest |
View concurrency.go
This file contains 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" | |
"net/http" | |
) | |
func example_function(){ | |
// function to be run concurrently | |
} |
View recieve.html
This file contains 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
<script> | |
window.addEventListener("message", function(message){ | |
document.write("I heard '" + message.data + "'") | |
}); | |
</script> |
View send.html
This file contains 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
<script> | |
function send_message() { | |
document.getElementById("frame").contentWindow.postMessage("hello there", "http://localhost/recieve.html"); | |
} | |
</script> | |
<iframe id="frame" onload="send_message()" src="recieve.html"></iframe> |
View nvd-dump.sql
This file contains 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
WITH | |
deep AS( | |
WITH | |
nested AS( | |
SELECT | |
configurations.nodes AS arr | |
FROM | |
`red-team-project.bq_nvd.nvd` | |
WHERE | |
EXISTS ( |
View cli.py
This file contains 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 json | |
import concurrent.futures | |
from goop import goop | |
green = '\033[92m' | |
white = '\033[97m' | |
yellow = '\033[93m' | |
end = '\033[0m' |
View portscanner.py
This file contains 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 socket | |
import concurrent.futures | |
from contextlib import closing | |
ports = [1,3,4,6,7,9,13,17,19,20,21,22,23,24,25,26,30,32,33,37,42,43,49,53,70,79,80,81,82, | |
83,84,85,88,89,90,99,100,106,109,110,111,113,119,125,135,139,143,144,146,161,163,179,199, | |
211,212,222,254,255,256,259,264,280,301,306,311,340,366,389,406,407,416,417,425,427,443, | |
444,445,458,464,465,481,497,500,512,513,514,515,524,541,543,544,545,548,554,555,563,587, | |
593,616,617,625,631,636,646,648,666,667,668,683,687,691,700,705,711,714,720,722,726,749, |
NewerOlder