I hereby claim:
- I am tsundokul on github.
- I am tim17d (https://keybase.io/tim17d) on keybase.
- I have a public key whose fingerprint is 5CC8 327E E74D 0D3D 3AD8 4B96 A3A2 C1C2 5760 4FB5
To claim this, I am signing this object:
| #!/bin/bash | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi | |
| cd /usr/lib/vmware/modules/source | |
| tar xvf vmnet.tar | |
| cd vmnet-only | |
| make |
| #!/bin/bash | |
| . $HOME/.bashrc | |
| # Check if second monitor is connected and set | |
| # $_SCR1 and $_SCR2 variables | |
| . $HOME/scripts/setscreen.sh | |
| ## BSPWM configuration | |
| # Set desktop names |
| OPENSSL_1.0.0 { | |
| global: | |
| BIO_f_ssl; | |
| BIO_new_buffer_ssl_connect; | |
| BIO_new_ssl; | |
| BIO_new_ssl_connect; | |
| BIO_proxy_ssl_copy_session_id; | |
| BIO_ssl_copy_session_id; | |
| BIO_ssl_shutdown; | |
| d2i_SSL_SESSION; |
| #!/usr/bin/env python3 | |
| # Usage python ./ajp.py <include_path> | |
| import struct | |
| from pwn import * | |
| from sys import argv | |
| context.log_level = logging.DEBUG |
| # See https://github.com/quentinhardy/odat | |
| # Download Oracle rpms from https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html | |
| FROM debian:stretch | |
| SHELL ["/bin/bash", "-cl"] | |
| # Reduce output from debconf | |
| env DEBIAN_FRONTEND noninteractive | |
| # Install python-dev, alien and libaio1 package (for sqlplus) and some python libraries | |
| RUN apt-get update && apt-get install -y --no-install-recommends apt-utils git wget libaio1 alien build-essential dpkg-dev python3-dev python3-setuptools python3-pip ca-certificates |
| t a a bt | |
| call (void) close(1) | |
| call (void) close(2) | |
| shell tty | |
| call (int) open("/dev/pts/0", 2, 0) | |
| call (int) open("/dev/pts/0", 2, 0) | |
| call (void) rb_backtrace() |
I hereby claim:
To claim this, I am signing this object:
| typedef struct Node Node; | |
| struct Node { | |
| int val; | |
| Node* prev; | |
| Node* next; | |
| }; | |
| typedef struct { |
| #!/usr/bin/env python3 | |
| # First install the required modules (Python 3) | |
| # pip3 install paramiko eml-parser | |
| import base64 | |
| import email | |
| import getpass | |
| import imaplib | |
| import os | |
| import paramiko | |
| import re |
| #!/usr/bin/env python3 | |
| import requests | |
| from lxml import html | |
| # Make sure you have a directory named wp_plugins/ in the cwd | |
| def get_links(url): | |
| page = requests.get(url) |