Μετάβαση στο περιεχόμενο

Αναζήτηση στην κοινότητα

Εμφάνιση αποτελεσμάτων για τις ετικέτες 'anonymity'.

  • Αναζήτηση με βάση τις ετικέτες

    Πληκτρολογήστε τις ετικέτες και χωρίστε τες με κόμμα.
  • Αναζήτηση με βάση τον συγγραφέα

Τύπος περιεχομένου


Ενότητες

  • GreekHacking
    • Κανόνες & Ανακοινώσεις
    • Καλωσόρισμα νέων μελών
    • Προτάσεις / Βελτιώσεις
    • Νέα σχετικά με το Hacking/Security
    • Ασφάλεια & Προστασία Δεδομένων
    • Εκτός Θέματος
  • Leaks
    • Hacking Tutorials
    • Anonymity & Privacy / Ανωνυμία και Προστασία Προσωπικών Δεδομένων
    • Προγράμματα για Hacking / Hacking Programs
    • Cracking Οδηγοί & Πληροφορίες
    • Βιβλία σχετικά με το Hacking
    • Προγράμματα - High Quality downloads
    • E-Books
    • XXX Movies

Categories

  • Ορολογίες
  • Hacking για αρχάριους
  • Hacking για προχωρημένους
  • Mobile Hacking
  • Cracking Tutorials
  • Hacking Computers
  • Hacking Tutorials στα Αγγλικά
  • Tutorials for hacks
  • Διάφοροι Οδηγοί
    • Οδηγοί σχετικά με τα Linux
    • Οδηγοί για υπολογιστές
    • Οδηγοί σχετικά με τα Mac
    • Οδηγοί για κινητά
  • Hacking Tutorials στα Αγγλικά Copy

Categories

  • Hacking
  • Ιστοσελίδες/Server
  • Hardware
  • Windows

Βρείτε αποτελέσματα...

Βρείτε αποτελέσματα που...


Ημερομηνία δημιουργίας

  • Start

    End


Τελευταία ενημέρωση

  • Start

    End


Φιλτράρισμα με βάση τον αριθμό των...

  1. p4tr10t.h4ck3r

    Private chat

    εχω φτιαξει ενα private chat με python ολα τα logs ειναι σε ενα webserver που επικοινωνει το προγραμμα ....στον webserver ολα ειναι encrypted σε ενα txt file...για να παρει το προγραμμα το file κανει ενα get request σε ενα php file ston server οπου με custom header ως κωδικος σου δινει το file ωστε να γινει decrypt και να το δει το προγραμμα...για post request ωστε να στειλεις μυνημα ειναι ενα απλο log in panel που στελνεις ψευδονημο και το μυνημα που θελεις... import requests import os import base64 from inputimeout import inputimeout,TimeoutOccurred def encryption(text): messageto = text message_bytes = messageto.encode('ascii') base64_bytes = base64.b64encode(message_bytes) base64message = base64_bytes.decode('ascii') return base64message def decrypt(text): messageto = text base64_bytes = messageto.encode('ascii') message_bytes = base64.b64decode(base64_bytes) base64message = message_bytes.decode('ascii') return base64message def custom_encryption(text): text=list(text) text1='' for i in text: text1=i+text1 text1=list(text1) text1[0],text1[len(text)-1]=text1[len(text1)-1],text1[0] text1[1],text1[len(text)-2]=text1[len(text1)-2],text1[1] text2='' for i in text1: text2+=i text2='=====en'+text2+'de=====' return text2 def custom_decrypt(text): text=list(text) text1=text[7:] text1=text1[:-7] text2='' for i in text1: text2=i+text2 text2=list(text2) text2[0],text2[len(text2)-1]=text2[len(text2)-1],text2[0] text2[1],text2[len(text2)-2]=text2[len(text2)-2],text2[1] text3='' for i in text2: text3+=i return(text3) def chat(): os.system('cls') print() print('-----------------------HACKER ZONE-----------------------') s=requests.get('' , headers=headers) #php file in webserver here file=s.text.split("\n") for i in range(len(file)-1): line=file[i].split(":") x=custom_decrypt(line[0]) y=custom_decrypt(line[1]) ln1=decrypt(x) ln2=decrypt(y) print(ln1+':'+ln2) os.system('cls') headers = {'user-agent':''} #PASSWORD HERE username=input('your username : ') while username=='' or username==':' or username=='\n': username=input('try again username : ') username=encryption(username) username=custom_encryption(username) log=encryption('Log in') log=custom_encryption(log) data={'username':username,'message':log,'submit':'Log in'} log = requests.post('',data=data)#log in in web here answer='' while answer!='stop': if answer=='write': message=input('write message : ') while message=='' or message==':' : message=input('write message again: ') message=encryption(message) message=custom_encryption(message) datas={'username':username,'message':message,'submit':'Log in'} s=requests.post('',data=datas)#log in in web here chat() chat() print('------------------------------------------------------') try: answer = inputimeout(prompt='write/stop : ', timeout=5) while answer=='' or answer==':' : answer = inputimeout(prompt='try again write/stop : ', timeout=5) except TimeoutOccurred: chat() print('------------------------------------------------------') answer='' θα αλαξετε τα εξης(προσθετετε αναμεσα απο τα αυτακια ' ' 😞 1)στο ( s=requests.get('' , headers=headers) #php file in webserver here ) βαζουμε το php file tou server πχ www.example.com/phpfile.php 2)στο ( headers = {'user-agent':''} #PASSWORD HERE ) βαζουμε εναν κωδικο 3)στο ( log = requests.post('',data=data)#log in in web here ) βαζουμε το html file που θα κανουμε log in στον webserver 4)να κατεβασετε με την χρηση του pip τα libraries base64 και requests <html> <head> <title>php chat</title> </head> <body> <?php if (isset($_POST['submit'])){ $file = fopen("chat.txt",'a+'); $text=$_POST['username'] . ':' . $_POST['message'] . "\n"; fwrite($file,$text); fclose($file); } ?> <form action='' method="POST"> <P>username: <input type="text" name ="username" value=""> <P>message: <input type="text" name ="message" value=""></p> <input type="submit" name="submit" value="Log in"> </form> </body> </html> εδω θα γινοντε τα post requests απο το python script βαλτε το στο webserver px http://example.com/post.html (αυτο θα βαλετε και στο python script στο 3 πχ log = requests.post('http://example.com/post.html',data=data)#log in in web here) επισης δημιουργηστε ενα txt file στον webserver που να λεγεται chat.txt αδιο <?php if (isset($_SERVER["HTTP_USER_AGENT"])) { $ua = $_SERVER["HTTP_USER_AGENT"]; if ($ua == "PASSWORD") { $f = fopen("chat.txt", "r"); echo fread($f, filesize("chat.txt")); fclose($f); } else if (strstr($ua, "Windows") || strstr($ua, "Linux")) { echo "<h1>Nice try skiddo</h1><style>body { background: #000; animation: sosi 69ms linear infinite; } @keyframes sosi { 20% { background: red; } 40% { background: blue; } 60% { background: green; } 80% { background: white; }}</style>"; } } else { echo "No access!"; } ?> αυτο ειναι το php script στον webserve που στην θεση του PASSWORD στο line 4 βαλτε τον κωδικο που βαλατε και στο python script στο 2 τελος βαλτε στο python script στο 1 την θεση του php πχ s=requests.get('http://example.com/get.php' , headers=headers) #php file in webserver here είστε έτοιμοι να το τρέξετε....Για ευκολία ή ακομα και δοκιμη σας προτεινω να το hostarete σε ενα free server οπως biz.nf Ο filamanager θα μοιαζει καπως ετσi: και το script καπως ετσι: Για οποιαδηποτε απορια η καποιο λαθος που εχω κανει παρακαλω ενημερωστε με....
  2. Θέλετε ένα δωρεάν ( προσωρινό ) email ( μιας χρήσης ); Κανένα πρόβλημα, απλά πατήστε τον παρακάτω σύνδεσμο για να μεταβείτε στην σελίδα, και να πάρετε δωρεάν ένα email ( λύγει μετά από 24 ώρες, και διαγράφει κάθε μήνυμα και ιστορικό που είχατε στο ψεύτικο email ) [hide] Δωρεάν προσωρινό ανώνυμο email [/hide]
  3. Have you ever wished to become a hacker? If the answer is yes, this book is for you! Started as a crowdfunding project, Hacklog Volume 1: Anonymity is the first of a book collection dedicated to who wants to enter the world of Hacking and IT Security. You’ll learn how to use the tools real-life hackers leverage everyday to avoid controls, how to conceal your most hidden files (and also how to recover them!) and you’ll get a deeper insight over the broad world of anonymity. Hacklog Volume 1: Anonymity was designed for who is not too familiar with IT Security, but is willing to learn! Furthermore, it’s a good review opportunity for those who already know this fascinating world as well as industry experts: High Schools, Universities, Industry Professionals and other Bodies use Hacklog to get information and stay up-to-date about the techniques used by cyber criminals to avoid controls and stay completely anonymous in the broad world of the Web. Here are some of the themes covered by the first volume: * You’ll learn how to use the Operating Systems used by hackers and industry experts, including Ubuntu, Kali Linux, Parrot Security OS and many others, based both on GNU/Linux and Windows and macOS. * You’ll be able to identify the traces left on a computer during an attack or an IT inspection, like MAC Address, Hostnames usage, DNSs and the via-Proxy anonymizing IP * You’ll be able to make secure communications through the VPNs, discovering the best service providers and the regulations about governmental takedowns * You’ll learn the vast world of the Deep Web and the Dark Net, the TOR, I2P and Freenet anonymizing circuits, as well as the Combo Networks to stay safe through pyramidal communication tunnels * You’ll be able to identify the local resources that can harm you, like Cookies, JavaScript, Flash, Java, ActiveX, WebRTC and you will learn how to fingerprint your browser * You’ll learn how to protect your data, verifying it with checksums and encrypting it using techniques like PGP and GPG; furthermore, you will get information about how to encrypt a disk, steganography and how to backup your crucial data * You’ll be able to recover data even after a disk wipe, and destroy it irreversibly, using the same techniques used by the law enforcement bodies around the world * You’ll learn how to identify the vulnerabilities that expose your identity to the Web, and the best practice to prevent it * You’ll learn how to anonymously purchase from the Web, using the Dark Net circuits and crypto-currencies like the Bitcoin Hacklog, Volume 1: Anonymity is an open project, partially released under Italian Creative Commons 4.0 – Italy. You can find all licensing information at our official website: www.hacklog.net Hacklog Volume 1 Anonymity IT Security & Ethical Hacking Handbook Stefano Novelli, Marco Silvestri, Marco Doria.pdf

ChatBox

ChatBox

Chatroom Rules

  • Το GreekHacking.Gr είναι ένα ελληνικό forum και επιτρέπεται μόνο η χρήση της Ελληνική Γλώσσας (ούτε greeklish).
  • Δεν επιτρέπονται οι βρισιές και γενικά η χρήση χυδαίας γλώσσας.
  • Απαγορεύεται αυστηρά το πορνογραφικό, προσβλητικό και βίαιο περιεχόμενο.
  • Μην χρησιμοποιείτε κεφαλαία γράμματα η σύμβολα.
×
×
  • Create New...