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 | |
| #Script to Scan All Sites Found With A Simple NMAP Scan With Burp. | |
| sites=$(nmap "$1" --open 443 --resolve-all --open -oG - | awk 'NR!=1 && /open/{print $2}') | |
| for site in $sites | |
| do | |
| curl -vgw "\\n" 'http://127.0.0.1:1337/v0.1/scan' -d '{"urls":["'"$site"'"]}' > /dev/null 2>&1 | |
| printf "Scanning %s with burp.\\n" "$site" | |
| done |
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
| # https://nlpforhackers.io/named-entity-extraction/ | |
| import os | |
| import string | |
| import collections | |
| import pickle | |
| from collections import Iterable | |
| from nltk.tag import ClassifierBasedTagger | |
| from nltk.chunk import ChunkParserI, conlltags2tree, tree2conlltags |
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
| import logging | |
| import metasploit.module as module | |
| class MetasploitLogHandler(logging.Handler): | |
| def emit(self, record): | |
| log_entry = self.format(record) | |
| level = 'debug' | |
| if record.levelno >= logging.ERROR: | |
| level = 'error' | |
| elif record.levelno >= logging.WARNING: |
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
| import math | |
| import requests | |
| import json | |
| import os | |
| from .color_dicts import mpl_color_map, html_color_codes | |
| def safe_iter(var): | |
| try: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #define SECURITY_WIN32 //Define First Before Imports. | |
| #include <windows.h> | |
| #include <stdio.h> | |
| #include <Sspi.h> //Be sure to reference secur32.lib in Linker | Input | Additional Dependencies | |
| FARPROC fpEncryptMessage; //Pointer To The Original Location | |
| BYTE bSavedByte; //Saved Byte Overwritten by 0xCC - |
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
| # Importing Scripts directly from Tweets! #280characters | |
| # | |
| # NOTE: This should not be used for any production environment. Or any environment for that matter. Use https://PowerShellGallery.com | |
| # | |
| # | |
| #################################### | |
| # Example # | |
| #################################### | |
| # | |
| # |
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
| roll | inkomstgrupp | kapitalgrupp | alder | kon | batchkod | land | |
|---|---|---|---|---|---|---|---|
| L | 2 | 2 | 84 | kvinna | M | Sverige | |
| 3 | 5 | 81 | kvinna | Övriga | Sverige | ||
| D | 1 | 1 | 69 | man | M | Sverige | |
| Sec | 0 | 1 | 34 | kvinna | M | Sverige | |
| 1 | 3 | 68 | man | Övriga | Sverige | ||
| 4 | 2 | 83 | kvinna | Övriga | Sverige | ||
| 4 | 2 | 35 | kvinna | Övriga | inte_sverige | ||
| L | 3 | 5 | 67 | man | M | inte_sverige | |
| 4 | 1 | 41 | kvinna | Övriga | Sverige |
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
| <?xml version="1.0"?> | |
| <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | |
| <Product Id="*" UpgradeCode="12345678-1234-1234-1234-111111111111" Name="Example Product Name" Version="0.0.1" Manufacturer="@_xpn_" Language="1033"> | |
| <Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package"/> | |
| <Media Id="1" Cabinet="product.cab" EmbedCab="yes"/> | |
| <Directory Id="TARGETDIR" Name="SourceDir"> | |
| <Directory Id="ProgramFilesFolder"> | |
| <Directory Id="INSTALLLOCATION" Name="Example"> | |
| <Component Id="ApplicationFiles" Guid="12345678-1234-1234-1234-222222222222"> |
NewerOlder