Skip to content

Instantly share code, notes, and snippets.

View pwgit-create's full-sized avatar

Peter Westin pwgit-create

View GitHub Profile
@pwgit-create
pwgit-create / BackdoorFinder.java
Created May 4, 2024 20:13
Detecting backdoors on Linux x64 systems
import java.io.*;
import java.util.*;
public class BackdoorFinder {
public static void main(String[] args) {
File file = new File("/etc"); // Good Starting point. Change here if you want another root folder to start from.
if (file.exists() && !file.isDirectory()) {
System.out.println("File is not a directory");
return;
}
@pwgit-create
pwgit-create / router_ssl_port.py
Created April 30, 2022 18:44
Find forgotten SSL port on ASUS RT-AX82U
# Purpose for script: Find forgotten SSL port on your ASUS RT-AX82U router
# This can be useful if you have enabled the SSL only option for the admin interface login.
# If you also have enabled all the security features like disabling ICMP and activated the "AI Protection" it’s not-
# That easy to do a quick Nmap-scan. A simple enumeration will do the trick though 😊
import requests