Skip to content

Instantly share code, notes, and snippets.

@dssecret
dssecret / tornium-estimate.user.js
Last active December 30, 2023 02:22
tornium-estimate.user.js
// ==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==
@dssecret
dssecret / items.csv
Last active June 12, 2024 22:43
All items in Torn and their IDs
1 Hammer
2 Baseball Bat
3 Crowbar
4 Knuckle Dusters
5 Pen Knife
6 Kitchen Knife
7 Dagger
8 Axe
9 Scimitar
10 Chainsaw
@dssecret
dssecret / bot.service
Created January 27, 2021 20:01
Systemd File for Launch of Bot on Boot
[Unit]
Description=Torn Bot
[Service]
Type=notify
Restart=always
RestartSec=5s
ExecStart=/bin/bash /bin/torn-bot/launch.sh
[Install]
@dssecret
dssecret / emailspam.py
Created May 18, 2020 20:09
Email Spammmer for Gmail and Yahoo mail
# 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)
@dssecret
dssecret / tools.txt
Last active August 9, 2019 18:44
Penetration Testing Tools for Raspbian
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
@dssecret
dssecret / LANconnection.py
Created July 26, 2019 19:39
Sockets Data Transfer
# 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