commit
30226cc436
|
@ -44,7 +44,7 @@ parser.add_argument('--osint', action='store_true',
|
||||||
help='Use OSINT reconnaissance')
|
help='Use OSINT reconnaissance')
|
||||||
|
|
||||||
parser.add_argument('-u', '--update', action='store_true',
|
parser.add_argument('-u', '--update', action='store_true',
|
||||||
help='Update the tool & databases')
|
help='Update the project')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
@ -53,10 +53,6 @@ if not len(sys.argv) > 1:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
if args.update:
|
|
||||||
print('update')
|
|
||||||
sys.exit()
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import time
|
import time
|
||||||
import hashlib
|
import hashlib
|
||||||
|
@ -76,6 +72,43 @@ except:
|
||||||
print('\033[91m[!] Missing requirements. Try running pip install -r requirements.txt')
|
print('\033[91m[!] Missing requirements. Try running pip install -r requirements.txt')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
if args.update:
|
||||||
|
def download_file(url, target_path):
|
||||||
|
response = requests.get(url, stream=True)
|
||||||
|
handle = open(target_path, "wb")
|
||||||
|
for chunk in response.iter_content(chunk_size=512):
|
||||||
|
if chunk: # filter out keep-alive new chunks
|
||||||
|
handle.write(chunk)
|
||||||
|
|
||||||
|
print('Updating PhoneInfoga...')
|
||||||
|
print('Actual version: {}'.format(__version__))
|
||||||
|
|
||||||
|
# Fetching last github tag
|
||||||
|
new_version = json.loads(requests.get('https://api.github.com/repos/sundowndev/PhoneInfoga/tags').content)[0]['name']
|
||||||
|
print('Last version: {}'.format(new_version))
|
||||||
|
|
||||||
|
osintFiles = ['disposable_num_providers.json', 'individuals.json', 'reputation.json', 'social_medias.json']
|
||||||
|
|
||||||
|
try:
|
||||||
|
print('[*] Updating OSINT files')
|
||||||
|
|
||||||
|
for file in osintFiles:
|
||||||
|
url = 'https://raw.githubusercontent.com/sundowndev/PhoneInfoga/master/osint/{}'.format(file)
|
||||||
|
output_directory = 'osint/{}'.format(file)
|
||||||
|
download_file(url, output_directory)
|
||||||
|
|
||||||
|
print('[*] Updating python script')
|
||||||
|
|
||||||
|
url = 'https://raw.githubusercontent.com/sundowndev/PhoneInfoga/master/phoneinfoga.py'
|
||||||
|
output_directory = 'phoneinfoga.py'
|
||||||
|
download_file(url, output_directory)
|
||||||
|
except:
|
||||||
|
print('Update failed. Try using git pull.')
|
||||||
|
sys.exit()
|
||||||
|
|
||||||
|
print('The tool was successfully updated.')
|
||||||
|
sys.exit()
|
||||||
|
|
||||||
scanners = ['any', 'all', 'numverify', 'ovh']
|
scanners = ['any', 'all', 'numverify', 'ovh']
|
||||||
|
|
||||||
uagent = []
|
uagent = []
|
||||||
|
|
Loading…
Reference in New Issue