Skip to content

Instantly share code, notes, and snippets.

@ECHO OFF
SETLOCAL
ECHO ASLR Enable / Diable Batch Script - Please run as admin
set /p Choice=Want to Enable or Disable ASLR? (e or d):%=%
if "%Choice%"=="e" goto :ENABLE
if "%Choice%"=="d" goto :DISABLE
:ENABLE
@dadatuputi
dadatuputi / iPXE EdgeRouter Settings
Last active September 22, 2018 05:15 — forked from Fossil01/gist:b3ae40dfcb4405601489
Edgerouter / VyOS / Vyatta iPXE DHCP Options
set service dhcp-server global-parameters "if exists user-class and option user-class = "iPXE" {"
set service dhcp-server global-parameters "filename "http://192.168.1.3:8080/boot.ipxe";"
set service dhcp-server global-parameters " } else { "
set service dhcp-server global-parameters "filename "undionly.kpxe";"
set service dhcp-server global-parameters "}"
set service dhcp-server global-parameters "next-server 192.168.1.3;"
@dadatuputi
dadatuputi / raspbian-python3.5.md
Last active January 4, 2019 12:30 — forked from dschep/raspbian-python3.6.rst
Installing Python 3.5 on Raspbian

Installing Python 3.5 on Raspbian

As of June 2017, Raspbian does not yet include Python 3.5. This means we will have to build it ourselves, and here is how to do it.

  1. Install the required build-tools (some might already be installed on your system). If one of the packages cannot be found, try a newer version number (e.g. libdb5.4-dev instead of libdb5.3-dev).