Step 1: netsh interface portproxy add v4tov4 listenaddress=0.0.0.0 listenport=3000 connectaddress=localhost connectport=3000
Step 2: Add Allow local routing to ports 3000-4000
rule to Windows Firewall's inbound connection ruleset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Takes an object and replaces the circular references (including deep circular references) with strings | |
var uncirc = function(obj, ident, seen) | |
{ | |
seen = seen || {}; | |
// Push the object identity (key) and object (value) onto the "seen" list | |
seen[ident] = obj; | |
// Returns the ident of a value or null if we have not yet seen it | |
// Could have made this an anonymous function |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A little program to quickly stress test a server | |
# blitz <url> <# of requests> <method> | |
# <url> defaults to localhost | |
# <# of requests> defaults to 30 | |
# <method> defaults to POST | |
# Probably a good idea to type method names with capital letters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP FUNCTION DIGEST_FORWARDING; | |
DELIMITER // | |
CREATE FUNCTION DIGEST_FORWARDING (s VARCHAR(80)) | |
RETURNS TEXT | |
DETERMINISTIC | |
LANGUAGE SQL | |
CONTAINS SQL | |
SQL SECURITY INVOKER |
[StrongBox UC flag: uc_secure_regions
]
Communicating classified materials, grand jury testimony, national secrets, etc. require the highest level of discretion when handled, yet sensitive information like this often appears within a (much) larger amount of data that we care less about in context.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2023-02-12T14:30:28.930Z","extensionVersion":"v3.4.3"} |
NewerOlder