Skip to content

Instantly share code, notes, and snippets.

Avatar
💭
Linux Hacker since childhood, in your world im just a Linux Security Engineer

wuseman wuseman

💭
Linux Hacker since childhood, in your world im just a Linux Security Engineer
View GitHub Profile
@wuseman
wuseman / Sagemcom_F@st_5370e.nmap.txt
Created March 9, 2023 02:51
Sagemcom_F@st_5370e.nmap.txt
View Sagemcom_F@st_5370e.nmap.txt
PORT STATE SERVICE REASON VERSION
22/tcp open ssh syn-ack ttl 55 Dropbear sshd 2012.55 (protocol 2.0)
| ssh-hostkey:
| 1024 3e323787c2ffe0f9d2341f312e17ebff (DSA)
| ssh-dss AAAAB3NzaC1kc3MAAACBAIbChJDVK49L2eH6sjEipIfgeJTaevhExQuu1x61tirrzXBGQCwlHbP+2/M8wv4QG/HEKXr+hhPkSYFeL+foLab7x2ZIIL/Rngj303xlQ9AVK/FlNyJBe8pPodtNn2itxgLnhbBeq/7q/79M9Xjrf1XXwKPEZp1UXtX8RJhqottnAAAAFQDpRpOJSVRfXEPMvX8798Jf6+prwQAAAIAOwHxKwTnJeMjqskIRNbwGap7rEqnPB2H6VjT/PQWLFhfwkQ++dbLxpBr7qV3cnUDMxso3tudVWdu4Bj/a5jmRrHQn02xWQfmAA6HPTN8LN1jQL1R4xDEIbWvwsGl+IfUFdJ2FgnAPceqUGsfBSc9j7sReBBC/TsTimHkyIZLCmAAAAIBarV5gjdCvzpbyD8OvrQppwdo3dbwcm4U2eX1YOG+xEs2Zb5q1hbrJ2fXsjL84d96DtII/tDWBwr4TdpDTiUV7LXpPjv8Z/JnuTcEWeDqHVzAsINGTLsNdvTOUgNjqM8510LFL7IHd7EgIyETiUTmoyoANJkL4XV9JcEQhC84A8w==
| 1040 44d66e3e7e9dfaa6026a27b8d7cceb60 (RSA)
|_ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgwCBl2loYGQ1mOG18KhRMZ2UmeumF4YIQXeQz9DgK5qd1IBLnM+RL4wVeIMR8ZSYxgmvlTvnenqi/+4Xvk9CZt6gRKZAjpR/dPdgJ0ahNYDBOZ14CGpcSQUN3A4MfdCAz8LeVIo84X/Y5E7jVOn4iLRus3Fo1WY7OE
@wuseman
wuseman / 22.04
Created February 14, 2023 04:15
Ubuntu 22.04 LTS (Jammy Jellyfish) complete sources.list
View 22.04
deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse
@wuseman
wuseman / gist:087e83570148cead8d9c147ecce47628
Created November 12, 2022 19:36
gentoo-purple-colorscheme
View gist:087e83570148cead8d9c147ecce47628
[Background]
Color=12,19,25
[BackgroundFaint]
Color=30,17,35
[BackgroundIntense]
Color=17,27,35
[Color0]
@wuseman
wuseman / lftp.rc
Created September 13, 2022 19:13
lftp.rc
View lftp.rc
########## SETTINGS
# On startup, lftp executes ~/.lftprc and ~/.lftp/rc. You can place aliases and 'set' commands
# there. Some people prefer to see full protocol debug, use 'debug' to turn the debug on.
# Certain commands and settings take a time interval parameter. It has the format Nx[Nx...], where N is time amount
# (floating point) and x is time unit: d - days, h - hours, m - minutes, s - seconds. Default unit is second. E.g.
# 5h30m or 5.5h. Also the interval can be 'infinity', 'inf', 'never', 'forever' - it means infinite interval. E.g.
# 'sleep forever' or 'set dns:cache-expire never'.
@wuseman
wuseman / send_sms_via_at.at
Created August 25, 2022 15:37
Send sms via AT
View send_sms_via_at.at
// Script-send_sms_text_mode.at
// Send SMS in Text Mode via /dev/tty[A-Z]CM[0-9]
//List of supported responses
AT+CMGF=?
// WAIT for 1 sec
WAIT=1
@wuseman
wuseman / root.sh
Created August 20, 2022 07:49 — forked from Arinerron/root.sh
"Root" via dirtyc0w privilege escalation exploit (automation script) / Android (32 bit)
View root.sh
#!/bin/bash
# Give the usual warning.
clear;
echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds...";
sleep 10;
clear;
# Download and extract exploit files.
echo "[INFO] Downloading exploit files from GitHub...";
@wuseman
wuseman / .lftp.mockup.rc
Last active July 18, 2022 20:43 — forked from gaubert/.lftp.mockup.rc
~/.lftp.rc parameters detailed
View .lftp.mockup.rc
########## SETTINGS
# On startup, lftp executes ~/.lftprc and ~/.lftp/rc. You can place aliases and 'set' commands
# there. Some people prefer to see full protocol debug, use 'debug' to turn the debug on.
# Certain commands and settings take a time interval parameter. It has the format Nx[Nx...], where N is time amount
# (floating point) and x is time unit: d - days, h - hours, m - minutes, s - seconds. Default unit is second. E.g.
# 5h30m or 5.5h. Also the interval can be 'infinity', 'inf', 'never', 'forever' - it means infinite interval. E.g.
# 'sleep forever' or 'set dns:cache-expire never'.
@wuseman
wuseman / live_webcrawlers.txt
Created July 9, 2022 11:02
Crawlers to block
View live_webcrawlers.txt
This file has been truncated, but you can view the full file.
# on Sat, 09 Jul 2022 01:31:15 +0000 Web Bots & Web Spiders Live 2022
###############################################################################
# WEB BOTS LIVE 2022 LIST
# URL: https://myip.ms/browse/web_bots
# See also: Blacklist IP https://myip.ms/browse/blacklist
# Copyright 2022, Myip.ms
###############################################################################
#
# Total Known Web Bots & Spiders in Myip.ms Database: 8,509 bots (291,596 ip addresses) 9 Jul 2022
#
@wuseman
wuseman / iptables-template.sh
Created June 7, 2022 23:48
Very good Template for iptables
View iptables-template.sh
#!/bin/sh
#------------------------------------------------------------------------------
# File: fw_laptop
# Author: Uwe Hermann <uwe@hermann-uwe.de>
# URL: http://www.hermann-uwe.de/files/fw_laptop
# License: GNU GPL (version 2, or any later version).
# $Id: fw_laptop 515 2006-05-21 17:13:43Z uh1763 $
#------------------------------------------------------------------------------
# A firewall script intended to be used on workstations / laptops. It basically
View gist:40c6ac590a2316aac10f13475552e5f7
# Cracking Sublime Text ( Build 4121 ) Tutorial Analysis
---
Two main changes to be made for best experience. This can be done with script.
### License Key
While it is possible to deduce the format of the license key, there is available ones online to show. Analyse and see that it is still that same format. The main part is the verification of the hash values from the license key that we want to always be "correct". This is also the key that this tutorial will use.
```