I hereby claim:
- I am zwned on github.
- I am zwned (https://keybase.io/zwned) on keybase.
- I have a public key ASCtREz8u5h34ZEz0aFLR7GMjtSvwQHX-5bRTyprK1NPlgo
To claim this, I am signing this object:
#!/usr/bin/env python | |
import sys | |
import csv | |
import openai | |
from math import ceil | |
from argparse import ArgumentParser | |
from github import Github | |
from github.GithubException import RateLimitExceededException, GithubException | |
from urllib3 import Retry |
I hereby claim:
To claim this, I am signing this object:
var blessed = require('blessed'); | |
var contrib = require('blessed-contrib'); | |
var screen = blessed.screen(); | |
var request = require("request"); | |
// You need to install dependencies: | |
// npm install blessed blessed-contrib | |
// Constants |
### Keybase proof | |
I hereby claim: | |
* I am zwned on github. | |
* I am zwned (https://keybase.io/zwned) on keybase. | |
* I have a public key whose fingerprint is 52CE 16E9 55F4 7AD4 6661 8968 F4A6 0D4F ABCA 38A5 | |
To claim this, I am signing this object: |
task: | |
... | |
- name: Add authorized_key file | |
authorized_key: user={{item.username}} key='{{ "\n".join(item.authkey) | string }}' | |
with_items: users | |
... |
hosts: | |
[local] | |
localhost | |
ext_vars.yml: | |
users: | |
user1: | |
password: password01 |
#!/bin/sh | |
# author: joda | |
openssl=/usr/bin/openssl | |
certdir=$SSL_CERT_DIR | |
if [ ! -f $openssl ]; then | |
echo "ERROR: Can't find $openssl. openssl-util installed?" >&2 | |
fi | |
if [[ "$1" = "-f" ]]; then | |
overwrite=1 | |
shift # remove $1 |
# Copyright (c) 2009 Upi Tamminen <[email protected]> | |
# See the COPYRIGHT file for more information | |
import os, time, anydbm, datetime | |
from kippo.core.honeypot import HoneyPotCommand | |
from twisted.internet import reactor | |
from kippo.core.config import config | |
from kippo.core.userdb import UserDB | |
from kippo.core import utils |
#include<string.h> | |
// The devil is in the details - nnp | |
void copy_buffers(char *argv[]) | |
{ | |
char buf1[32], buf2[32], buf3[32]; | |
strncpy(buf2, argv[1], 31); | |
strncpy(buf3, argv[2], sizeof(buf3)); |