Skip to content

Instantly share code, notes, and snippets.

View hateshape's full-sized avatar
💭
No Status For You

hateshape

💭
No Status For You
View GitHub Profile
@blark
blark / vmware-fingerprint.nse
Last active December 5, 2017 20:41
Nmap script that returns VMWare version info
local http = require "http"
local shortport = require "shortport"
local stdnse = require "stdnse"
description = [[
Uses an HTTP PUT request to VMware's SOAP API in order to elicit a server response that contains ESX version information.
]]
---
--@usage
@colinrubbert
colinrubbert / getAllGlobals.js
Created August 23, 2023 14:44
Get all runtime global variables set by the app
/**
* RuntimeGlobalsChecker
*
* You can use this utility to quickly check what variables have been added (or
* leaked) to the global window object at runtime (by JavaScript code).
* By running this code, the globals checker itself is attached as a singleton
* to the window object as "__runtimeGlobalsChecker__".
* You can check the runtime globals programmatically at any time by invoking
* "window.__runtimeGlobalsChecker__.getRuntimeGlobals()".
*