Skip to content

Instantly share code, notes, and snippets.

View GithubKillsMyOpsec's full-sized avatar

SierraUniformSierra GithubKillsMyOpsec

View GitHub Profile
@GithubKillsMyOpsec
GithubKillsMyOpsec / server.js
Created June 1, 2026 22:43
server.js source code from a 1password phishing website.
const express = require('express');
const axios = require('axios');
const path = require('path');
const crypto = require('crypto');
require('dotenv').config();
const app = express();
const PORT = process.env.PORT || 3000;
app.set('trust proxy', true);
@GithubKillsMyOpsec
GithubKillsMyOpsec / shod2eye.py
Last active August 7, 2024 17:00
Take shodan query and output to txt file for eyewitness/nuclei to process.
import shodan
import time
# Replace with your Shodan API key
SHODAN_API_KEY = 'APIKEYHERE'
# Query to perform on Shodan
query = 'ASN:111111' # Example query, change as needed
# Initialize the Shodan API