40Hex Issue 4 December 1991
Just thought it would be funny to list what I think is the ulitmate virus programmers toolkit. Theroys may vary.
- Turbo Assembler (MASM sucks, and it is slow)
- Turbo Debugger(It rules, what else can I say?)
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; | |
using System.Runtime.InteropServices; | |
using System.Timers; |
40Hex Issue 4 December 1991
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.Make a note of below assumptions for one liners explained on this page are as below,
User root - the superhero, superuser User normaluser - user that has root sudo privilege and all ansible required connectivity in place User user1 - user that has root sudo privilege
##Understanding basic differences in commands using various users with various rights
To run command on all servers to check reach ability from ansible point of view with 25 parallel forks with current user (i.e. root or normaluser)
#!/bin/sh | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
BLUE='\033[0;34m' | |
NC='\033[0m' | |
GIB_IN_BYTES="1073741824" | |
target="${1:-pi1}" |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.4; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "@openzeppelin/contracts/utils/Counters.sol"; | |
contract TREEMINTTEST is ERC721, ERC721URIStorage, ERC721URIStorage, Ownable { |
Requires paramiko, paramiko-expect
** Fabric doesn't work on SonicWall as it doesn't support exec_command() **
https://www.enjen.net/asn-blocklist/index.php?asn=22363&type=iplist
add &api=1
to URL for text file
start by SSH'ing to the device and type
<html> | |
<head> | |
<style> | |
body { | |
overflow-y: hidden; /* Hide vertical scrollbar */ | |
overflow-x: hidden; /* Hide horizontal scrollbar */ | |
} | |
#dvd { | |
position: absolute; | |
transform-origin: center center; |
Python reverse shell that reconnects to server (ncat/socat/connection manager/etc)
A neat little server written in Go. It can handle multiple sessions from the client.py script or any other valid reverse shell (not tested).