Jump to content
Usr6

[RST] Unhide Private Browsing (Python)

Recommended Posts

Posted

Folosesti [chrome, firefox, ie, opera, etc] private browsing si crezi ca nimeni altcineva (exceptand providerul de net si serviciile) nu poate stii pe ce site-uri ai umblat? Te inseli, poate browserul tau nu tine evidenta site-urilor vizitate, dar, windows-ul o face si pentru browserul tau. Orice persoana cu acces fizic la calculator avand scriptul de mai jos iti poate zice domeniile web care au fost accesate de pe pc-ul tau, fie ele accesate clasic sau in mod private browsing.

Script: python 2.7


import subprocess
import re
import sys

print """
RST UnHide Private Browsing
Usr6 (usr_6@yahoo.com)
Usage:
-s for saving output to 'visited.txt'
"""

if len(sys.argv) == 2:
if sys.argv[1] == "-s":
save = 1
fisier = open("visited.txt", "a")
else:
save = 0

try:
unhide = subprocess.Popen("6970636f6e666967202f646973706c6179646e73".decode("hex"),stderr=subprocess.PIPE,stdout=subprocess.PIPE,shell=True)
(stdout, stderr) = unhide.communicate()
except :
sys.exit(stderr)

output = re.sub(" ", "", stdout)
lista_output = output.split("rn")
print "Ai accesat:"
for i in range(0, len(lista_output)):
if lista_output[i] == "-" * 40 + "r":
if lista_output[i-1] != "localhostr" and lista_output[i-1] != "1.0.0.127.in-addr.arpar":
if save == 1:
fisier.write(lista_output[i-1].rstrip() + "n")
print "t[+]" + lista_output[i-1]
else:
print "t[+]" + lista_output[i-1]
raw_input("Press Enter to exit.")
sys.exit("Exiting...")

output:



RST UnHide Private Browsing
Usr6 (usr_6@yahoo.com)
Usage:
-s for saving output to 'visited.txt'

Ai accesat:
[+]rstforums.com
...
[+]google.ro
[+]site-ul_pe_care_l-ai_vizitat_cu_private_browsing_aici.com

Press Enter to exit.
Exiting...

Desigur, exista si metode de evitare/eliminare, pentru detalii suplimentare, accesati: https://rstforums.com/forum/tutoriale.rst

  • Upvote 1
Posted

C:\Python27>python.exe aaa.py

Ai accesat:

Press Enter to exit.

Exiting...

Python 3 vrea alte sintaxe. Am accessat ceva site-uri si am golit si history-ul de foarte multe ori pe windows-ul asta ... ma asteptam sa vad toate paginile vizitate vreodata de windows-ul asta.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...