- Install I2P
- Download I2P
java -jar i2pinstall_*.jar
- Install Java Service Wrapper
- Download Community Version
tar xzf wrapper-*.tar.gzcp wrapper*/bin/wrapper /Applications/i2p/i2psvccp wrapper*/lib/wrapper.jar /Applications/i2p/libcp wrapper*/lib/libwrapper.so /Applications/i2p/lib
- Try to start I2P using
/Applications/i2p/i2prouter startor Start I2P Router app
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
| ######################################################################### | |
| # $$\ $DEAD$\ $MOUSE\ $$\ EDITION\ $$\ V2\ $$\ # | |
| # $$ | $$ ___$$\ $$ ___$$\ $$ | $$ __$$\ $$ | $$ | $$ | # | |
| # $$ | \_/ $$ |\_/ $$ |$$$$$$\ $$ | $$ |$$ | $$ |$$$$$$\ # | |
| # $$ | $$$$$ / $$$$$ / \_$$ _| $$$$$$$ |$$$$$$$$ |\_$$ _| # | |
| # $$ | \___$$\ \___$$\ $$ | $$ __$$< \_____$$ | $$ | # | |
| # $$ | $$\ $$ |$$\ $$ | $$ |$$\ $$ | $$ | $$ | $$ |$$\ # | |
| # $L33tR4t\\$Kali$ |\$Linux | \$$$$ |$$ | $$ | $$ | \$ISO | # | |
| # \________|\______/ \______/ \____/ \__| \__| \__| \____/ # | |
| ######################################################################### |
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
| Most of the logic resides in https://github.com/beefproject/beef/tree/master/core/main/client | |
| https://github.com/beefproject/beef/blob/master/core/main/client/beef.js establishes the beef object in the browser's DOM | |
| window.onload then runs beef_init() https://github.com/beefproject/beef/blob/master/core/main/client/init.js#L24 | |
| Within beef_init() we run beef.net.browser_details() https://github.com/beefproject/beef/blob/master/core/main/client/init.js#L67 | |
| Within beef.net.browser_details() we gather response from beef.browser.getDetails() https://github.com/beefproject/beef/blob/master/core/main/client/net.js#L503 |
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 | |
| # Dependencies: awscli - see https://aws.amazon.com/cli/ | |
| # Some of this is pilfered from | |
| # https://github.com/awslabs/aws-codedeploy-samples | |
| # | |
| # How to use: | |
| # ./aws-manage.sh <instance id> <dns-record> <dns-type> <up|down> | |
| # | |
| # For example: | |
| # ./aws-manage.sh i-7337 xntrik.wtf A up |
aka how to make a stupid mirror
-
get aptly (https://aur.archlinux.org/aptly.git)
-
get the ubuntu-archive-keyring. can use any ssl mirror.
curl -OJL https://gpl.savoirfairelinux.net/pub/mirrors/ubuntu/project/ubuntu-archive-keyring.gpg.sig
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
| alias aptly-cli='\ | |
| docker run \ | |
| -v ~/.config/aptly-cli/aptly-cli.conf:/etc/aptly-cli.conf \ | |
| -it --rm --name=aptly-cli \ | |
| sepulworld/aptly-cli' |
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/sh | |
| # Copyright (c) 2014, Peder O. Klingenberg | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions | |
| # are met: | |
| # | |
| # 1. Redistributions of source code must retain the above copyright |
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
| ## Puppet Foreman | |
| server { | |
| listen 443 ssl; | |
| ssl_certificate ssl/foreman.xxx.com.crt; | |
| ssl_certificate_key ssl/foreman.xxx.com.key; | |
| ssl_session_timeout 10m; | |
| add_header Strict-Transport-Security max-age=15768000; | |
| server_name foreman.xxx.com; |
- Install Python 3.5.x from https://www.python.org/downloads/ or via homebrew
Check that python3 has been installed by running it at the terminal:
$ python3
>>> Python 3.5.1
- Download
get-pip.pyfrom https://bootstrap.pypa.io/get-pip.py - To install, run:
$ sudo python3 get-pip.py
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
| # pulled from http://xecdesign.com/qemu-emulating-raspberry-pi-the-easy-way/ | |
| # expanded via http://superuser.com/questions/690060/how-to-enable-network-with-a-raspberry-pi-emulated-on-qemu | |
| # tested with 2015-02-16-raspbian-wheezy.zip on OSX Mavericks | |
| # OSX terminal | |
| brew install qemu | |
| # kernel-qemu is a linux kernel compiled with ARM1176 support. | |
| # learn more here: http://xecdesign.com/compiling-a-kernel/ | |
| curl -OL http://xecdesign.com/downloads/linux-qemu/kernel-qemu | |
| curl -o raspbian_latest.zip -L http://downloads.raspberrypi.org/raspbian_latest |