X Tutup
Skip to content

Commit b941b43

Browse files
authored
Add files via upload
1 parent ed71091 commit b941b43

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

SPLOITUS/sploitus .py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import requests
2+
3+
banner='''
4+
5+
.dMMMb dMMMMb dMP .aMMMb dMP dMMMMMMP dMP dMP .dMMMb
6+
dMP" VP dMP.dMP dMP dMP"dMP amr dMP dMP dMP dMP" VP
7+
VMMMb dMMMMP" dMP dMP dMP dMP dMP dMP dMP VMMMb
8+
dP .dMP dMP dMP dMP.aMP dMP dMP dMP.aMP dP .dMP
9+
VMMMP" dMP dMMMMMP VMMMP" dMP dMP VMMMP" VMMMP"
10+
'''
11+
print(banner)
12+
print('')
13+
print('author:Nine world')
14+
print('--------------------------------------------------------------------------------------')
15+
def sploitus():
16+
#headers={'user-agent':'User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','content-type': 'application/json','accept': 'application/json','referer': 'https://sploitus.com/?query=MS17-010'}
17+
print('[!] Please select type')
18+
print('exploits')
19+
print('tools')
20+
xz=input('type:')
21+
user=input('query:')
22+
print('')
23+
headers={
24+
'accept': 'application/json',
25+
'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'
26+
}
27+
url='https://sploitus.com/search'
28+
data={'offset':0,'query':"{}".format(user),'sort':"default",'title':'false','type':"{}".format(xz)}
29+
cookie={'__cfduid':'d7ecd3f6052b48a13d4a47e83dbdd15eb1536914053'}
30+
requt=requests.post(url=url,headers=headers,json=data,cookies=cookie)
31+
jds=requt.json()
32+
lp=jds['exploits'][0:]
33+
for l in lp:
34+
print('title:',l['title'])
35+
#print('published',l['published'])
36+
print('id',l['id'])
37+
print('type:',l['type'])
38+
print('url:',l['href'])
39+
print('')
40+
sploitus()

0 commit comments

Comments
 (0)
X Tutup