(1/16/2025) Currently 3 days before the ban. I know this is last minute, I'm sorry I literally just got the script to work as intended. Anyways, this Python script will automatically download ALL your liked, favorited, DM'd videos as well as recent history videos with no watermarks and no audio delays. Still testing as we speak so I'll share more info as time passes. Forewarning, you may want to use VLC Media Player on Windows to open a majority of your downloaded TikToks. There is also a codec for the regular media player that you can purchase for $0.99
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import csv | |
import json | |
from concurrent.futures import ThreadPoolExecutor | |
from censys.common.exceptions import CensysException | |
from censys.search import CensysHosts | |
def lookup_ips(csv_file): |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | |
407etr.org-txtagstorefrontyfti.xin | |
bayareafastrak.com-ipwk.xin | |
bayareafastrak.com-qmcw.xin | |
check-thetollroads.top | |
driveks.com-ajrr.xin | |
driveks.com-auth.top | |
driveks.com-bbjg.xin | |
driveks.com-byyt.xin | |
driveks.com-cdkl.xin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://114.33.8.73:88/i | |
http://115.59.3.70:10234/GFdeDGGhlSAgjPOObAhb | |
http://121.189.111.218:46719/GFdeDGGhlSAgjPOObAhb | |
http://122.117.142.237:880/l | |
http://123.11.88.171:59991/GFdeDGGhlSAgjPOObAhb | |
http://124.223.106.247:4448/easy.sh | |
http://124.223.106.247:4448/loligang.arm5 | |
http://124.223.106.247:4448/loligang.arm6 | |
http://124.223.106.247:4448/loligang.arm7 | |
http://124.223.106.247:4449/cli |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add to .zshrc | |
# Autocompletion for Censys CLI | |
# EDIT the list of fields BEFORE USE | |
censys_args=( | |
account | |
asm | |
config |
Install iTerm website
iTerm2 is an open source replacement for Apple's Terminal. It's highly customizable and comes with a lot of useful features.
brew install --cask iterm2
- Python 3.6+ (Download latest 3.x release from python.org)
- Selenium (Install with
pip install selenium
) - WebDriver (For this project we will be using the latest version of Chromedriver from selenium.dev)
- IDE of your choice (I personally recommend VSCode)
Make sure both
pip
andwebdriver
are in yourPATH
. Please see this article for instructions.
Make sure to checkout GitHub Student Developer Pack
- Git
- AWS
- Firebase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# ReEncoder.py - script allowing for recursive encoding detection, decoding and then re-encoding. | |
# To be used for instance in fuzzing purposes. | |
# | |
# NOTICE: | |
# If the input string's length is divisble by 4, Base64 will be able to decode it - thus, the script | |
# would wrongly assume it has been encoded using Base64. The same goes for Hex decoding. | |
# In order to tackle this issue, the script builds up a tree of possible encoding schemes and then evaluate |
NewerOlder