Telegram Group & Telegram Channel
import webtech
Then we can start a new instance with the wt variable:

wt = webtech.WebTech()

And start a scan of the desired URL (I had to also set a short timeout or it wouldn't work) and save that to the results variable:

results = wt.start_from_url('https://null-byte.wonderhowto.com/', timeout=1)

Finally, we can print the results of the scan to the screen:

print results
The final script should look like this:
#!/usr/bin/python import webtech wt = webtech.WebTech() results = wt.start_from_url('https://null-byte.wonderhowto.com/', timeout=1) print results

We can now run our script with the python command we set up above:

~# python scan.py Target URL: https://null-byte.wonderhowto.com/ Detected technologies: - jQuery 1.7 - Google Font API - comScore Detected the following interesting custom headers: - Server: WonderHowTo - X-UA-Compatible: IE=Edge,chrome=1 - X-Server-Name: APP03

Here we can see that we've obtained the same results as before. Keep in mind, this was just a simple proof-of-concept — we could make this a lot more robust if we wanted.



tg-me.com/zeeprogrammer/2377
Create:
Last Update:

import webtech
Then we can start a new instance with the wt variable:

wt = webtech.WebTech()

And start a scan of the desired URL (I had to also set a short timeout or it wouldn't work) and save that to the results variable:

results = wt.start_from_url('https://null-byte.wonderhowto.com/', timeout=1)

Finally, we can print the results of the scan to the screen:

print results
The final script should look like this:
#!/usr/bin/python import webtech wt = webtech.WebTech() results = wt.start_from_url('https://null-byte.wonderhowto.com/', timeout=1) print results

We can now run our script with the python command we set up above:

~# python scan.py Target URL: https://null-byte.wonderhowto.com/ Detected technologies: - jQuery 1.7 - Google Font API - comScore Detected the following interesting custom headers: - Server: WonderHowTo - X-UA-Compatible: IE=Edge,chrome=1 - X-Server-Name: APP03

Here we can see that we've obtained the same results as before. Keep in mind, this was just a simple proof-of-concept — we could make this a lot more robust if we wanted.

BY Tech Program


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/zeeprogrammer/2377

View MORE
Open in Telegram


Tech Program Telegram | DID YOU KNOW?

Date: |

Telegram auto-delete message, expiring invites, and more

elegram is updating its messaging app with options for auto-deleting messages, expiring invite links, and new unlimited groups, the company shared in a blog post. Much like Signal, Telegram received a burst of new users in the confusion over WhatsApp’s privacy policy and now the company is adopting features that were already part of its competitors’ apps, features which offer more security and privacy. Auto-deleting messages were already possible in Telegram’s encrypted Secret Chats, but this new update for iOS and Android adds the option to make messages disappear in any kind of chat. Auto-delete can be enabled inside of chats, and set to delete either 24 hours or seven days after messages are sent. Auto-delete won’t remove every message though; if a message was sent before the feature was turned on, it’ll stick around. Telegram’s competitors have had similar features: WhatsApp introduced a feature in 2020 and Signal has had disappearing messages since at least 2016.

Tech Program from us


Telegram Tech Program
FROM USA