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
// ==UserScript== | |
// @name Tornium Estimation | |
// @namespace https://tornium.com | |
// @version 0.1.1 | |
// @author tiksan [2383326] | |
// @match https://www.torn.com/profiles.php* | |
// @grant GM_xmlhttpRequest | |
// @connect tornium.com | |
// ==/UserScript== |
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
1 | Hammer | |
---|---|---|
2 | Baseball Bat | |
3 | Crowbar | |
4 | Knuckle Dusters | |
5 | Pen Knife | |
6 | Kitchen Knife | |
7 | Dagger | |
8 | Axe | |
9 | Scimitar | |
10 | Chainsaw |
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
[Unit] | |
Description=Torn Bot | |
[Service] | |
Type=notify | |
Restart=always | |
RestartSec=5s | |
ExecStart=/bin/bash /bin/torn-bot/launch.sh | |
[Install] |
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
# This program is for educational purposes only | |
# Make sure that you have allowed less secure app access | |
import smtplib | |
import sys | |
import time | |
def send(): | |
msg = "From: " + email_addr + "\nSubject: " + subject + "\n" + body | |
server.sendmail(email_addr, target, msg) |
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
List of Unverified Tools Available at https://tools.kali.org/tools-listing. Not All Are Available for Raspbian. | |
List Still Under Development | |
Name Description Guide | |
________________________________________________________________________________________________________________________ | |
6tunnel TCP Tunnel for Non-IPv6 Applications https://bit.ly/6tunnel | |
aircrack-ng WEP/WPA Cracking Program https://bit.ly/aircrack--ng | |
arp-scan Arp Scanning and Fingerprinting Tool https://bit.ly/arp-scan | |
bfbtester Brute Force Binary Tester N/A | |
btscanner Ncurses-Based Scanner for Bluetooth Devices N/A |
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
# How to use: | |
# LANconnect() <- starts connection, | |
# - note that the server side must be started first | |
# | |
# .send(msg) <- sends a msg, this must be in bytes | |
# .receive(length) <- receives msg, length is the length of msg | |
# | |
# .cleanup() <- use at the end of code to close sockets | |
import socket, time, logging |