Scrape TOR/Onion sites with Python !! Easy, quick and efficient - HOXFRAMEWORK

Ғылым және технология

Big thanks to my viewers for 600 subs!!
I really hope im helping you guys learn with my videos.Visit my website to get the code : hoxframework.com.hr
- you can find all 3 python files in text there as well as a bunch of other information on my videos & more. Also, dont scrape ilegally, be kind to website owners.
THIS VIDEO IS FOR EDUCATIONAL PURPOSES ONLY.
PLEASE DO NOT SEND TOO MUCH REQUESTS TO AHMIA - SINCE THIS IS ILLEGAL; ONE REQUEST IS MORE THAN ENOUGH FOR MOST OF YOU - FOR THE REST OF YOU : CONTACT AHMIA ADMINISTRATION AND SEE WITH THEM
If you like my content you can share, like and subscribe - follow me on instagram or similar. If you have ANY questions leave them down in comments, I will make sure i answer them! I wont be uploading for some time now as im having some health issues; But dont worry i will be back with more content !
In the meantime you can check out my other videos or similar. Once again thank you so much for watching and have a nice day.
TAGS: web scrape, tor, onion, simple, easy, python, tutorial, hoxframework, deepweb

Пікірлер: 47

  • @tomcunningham8935
    @tomcunningham89352 жыл бұрын

    Really good video Do more on connecting to tor using python! You got a sub from me!

  • @HoxFramework
    @HoxFramework3 жыл бұрын

    One of you asked this question but youtube removed it : "can you make a beginner video where you make a very simple site with apache2 (maybe just hello world and nothing else) and how to port forward that site i been stuck here ..." Well listen, if you cant do a hello world with apache site you got plenty to learn - however i will definitely and gladly help! Apache is pretty simple to use - run this command: service apache2 start Then navigate to /var/www/html over there you can make your files like index.html or similar If you dont know html i highly recommend learning that - its the absolute MUST and absolute basics - very simple stuff. There is even a video on my channel about it (i think my oldest video) Port forwarding is also a pure basic thing that you need to know - gathering what i know now you seem like an absolute beginner - but thats fine too. All you need to know is your router's ip (if your main OS is windows run CMD and run a command: ipconfig - there you can see DEFAULT GATEWAY - thats your router's gateway IP) - for linux the commands are: route -n If i remember correctly. Often default gateway will have an IP like this : 192.168.1.1 or 192.168.0.1 - so if thats your case you will know to recognize it easily, if it isnt thats fine too dont worry nothing changes Just copy that IP into your browser and enter the router login credentials. After that try to find port forwarding - for me it was (from some reason) on Advanced setup > NAT > Port forwarding add a port that you want to forward by entering its number and setting it to TCP/UDP both ideally - and if it asks you for an internal IP adress provide your VM's IP. (ofcourse this would imply that you have bridged the adapter to your VM, not used NAT - in network settings of the VM)

  • @hexczzzz
    @hexczzzz2 жыл бұрын

    love it♥️

  • @rishisahu2106
    @rishisahu21062 ай бұрын

    GREAT VIDEO TNYHX

  • @uploads87
    @uploads872 жыл бұрын

    Really nice!

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    Thank you my dude

  • @tajmahel7342
    @tajmahel7342 Жыл бұрын

    Thanks for video. very informative. could you please let us know how to change tor ip from python ?

  • @HoxFramework

    @HoxFramework

    Жыл бұрын

    Thanks dude! Im not sure how taht could be done, but tor as a "proxy" actually changes pretty often - id even say on every python-script run. Test it out and let me know hope this helps

  • @hectoralbertodiazgomez4687
    @hectoralbertodiazgomez46872 жыл бұрын

    Hello. Could you make a video on how to scrape Searx (or any other open-source search engine) search results (title, link and description) with Python? I think that would be great since those open-source search engines, unlike google, will not ban internauts for doing web scrapping.

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    Hello, thanks for asking - but i wont be making a "Scraping searX video" since it really isnt that hard - ill explain why and how: All you have to do is use python to get JSON of searX results and parse trough them using simple python's json navigation. Start your SearX instance locally and make a python script similar to this one: import requests import json question = input("Enter your searX question:") data = { 'q': question, 'category_general': 'on', 'time_range': '', 'language': 'en-EN', 'format': 'json' } response = requests.post('localhost:8888/search', data=data) data = json.loads(response.text) then use the data variable to find your results

  • @hectoralbertodiazgomez4687

    @hectoralbertodiazgomez4687

    2 жыл бұрын

    @@HoxFramework Thank you so much for your kind response.

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    @@hectoralbertodiazgomez4687 No problem man

  • @darkdark1422
    @darkdark14222 жыл бұрын

    can this work for haystack engine?

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    I havent tried, but probably - haystack as in Django's haystack? Probably - depending on how you mean to implement it

  • @np.Singer
    @np.Singer Жыл бұрын

    I want to program a website on the dark web. Use any programming language, please. I need a response

  • @HoxFramework

    @HoxFramework

    Жыл бұрын

    html, css and Js are enough for that, and you dont want dark web - dark web is illegal, you want deep web Onion-hosted websites are regular sites :) They are just accessible via tor

  • @mnageh-bo1mm
    @mnageh-bo1mm3 жыл бұрын

    Lol your thumbnails are so funny. Anyway take a look on this list and see if you could make a video about any of these ideas github.com/soyalk/probalk/issues/2

  • @HoxFramework

    @HoxFramework

    3 жыл бұрын

    I know right hahaha. I try to make them not-serious; I have saved that list in a text file where i keep my ideas - however most of them wont come to their turn soon enough since i have my own ideas on TODO - plus i always like to research a topic im doing really well so i can explain it for you guys better and since i've researched the ones i already have on the TODO list i'll probably do them first Thanks anyways, they are in my text file now :) Hope you liked this video too!!

  • @mnageh-bo1mm

    @mnageh-bo1mm

    3 жыл бұрын

    @@HoxFramework oh great , you are welcome ;) The video is pretty good too ;;;)

  • @shahfaisalali5541
    @shahfaisalali55412 жыл бұрын

    bro how to install pysocks and requests

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    i answered in ur previous comment

  • @shahfaisalali5541
    @shahfaisalali55412 жыл бұрын

    where to get this pysocks and requests i am new, i dont know much about hacking

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    Modules for python can be installed using your CMD/Terminal with commands like: pip install so for requests it would be: pip install requests

  • @shahfaisalali5541

    @shahfaisalali5541

    2 жыл бұрын

    @@HoxFramework not working its showing "pip is not recognised as an internal or external command, operable programme or batch file"

  • @shahfaisalali5541

    @shahfaisalali5541

    2 жыл бұрын

    Please reply

  • @shahfaisalali5541

    @shahfaisalali5541

    2 жыл бұрын

    I am bot able to scrap the sites, and i need all Onion V3 sites

  • @HoxFramework

    @HoxFramework

    2 жыл бұрын

    @@shahfaisalali5541 You didnt install pip when you were installing python

  • @bloomerboi21
    @bloomerboi213 жыл бұрын

    Your githun

  • @HoxFramework

    @HoxFramework

    3 жыл бұрын

    I dont have one yet, but additional information on the video is on my website

  • @samnotwell
    @samnotwell Жыл бұрын

    Website down

  • @HoxFramework

    @HoxFramework

    Жыл бұрын

    Should be back up now Hosting had some hardware maintaining to do

  • @SaifHarbia1
    @SaifHarbia1Ай бұрын

    you talk too freaking FAST !!

  • @HoxFramework

    @HoxFramework

    Ай бұрын

    Sorry bro Feel free to slow down the vid :)

  • @SaifHarbia1

    @SaifHarbia1

    Ай бұрын

    @@HoxFramework dont worry, can you tell me how to get the python files and the tor service?

  • @HoxFramework
    @HoxFramework3 жыл бұрын

    Dear viewers, since you asked I've created a discord server - you can get an invite link from my website's notifications widget (right side). Feel free to ask your questions there if you have something non-video related, or on my instagram account (same nickname)

Келесі