nixpkgs
cheatsheet
Contribute to Tips and tricks for one who wants to write expressions to contribute to NixOS/nixpkgs .
nixpkgs
Build a package from local nix-build <PATH_TO_NIXPKGS> -A <PACKAGE>
/* | |
Using this `shell.nix`, here is how to install BAP using `opam`: | |
``` | |
opam init --comp=4.09.0 | |
eval $(opam env) | |
opam install bap | |
``` | |
*/ | |
with import <nixpkgs> { }; |
def tag_parameter_definitions(func): | |
""" | |
Add a `ParameterTag` to the definitions of the arguments of the function simulated by the handler. | |
""" | |
@functools.wraps(func) | |
def wrapper(self, state: 'ReachingDefinitionsState', codeloc: 'CodeLocation'): | |
arch = state.arch | |
tag = ParameterTag( | |
function = codeloc.ins_addr, |
with import <nixpkgs> { }; | |
let | |
armhfDependencies = [ | |
pkgsCross.armv7l-hf-multiplatform.buildPackages.targetPackages.glibc | |
pkgsCross.armv7l-hf-multiplatform.buildPackages.targetPackages.ncurses5 | |
pkgsCross.armv7l-hf-multiplatform.buildPackages.targetPackages.readline5 | |
]; | |
in stdenv.mkDerivation { | |
name = "cross-environment"; |
with import <nixpkgs> { }; | |
let | |
python38WithPackages = python38.withPackages(ps: with ps; [ | |
binwalk | |
]); | |
firmware-mod-kit = fetchFromGitHub { | |
owner = "rampageX"; | |
repo = "firmware-mod-kit"; |
with import <nixpkgs> { }; | |
stdenv.mkDerivation rec { | |
name = "ZAP"; | |
buildInputs = [ | |
openjdk | |
]; | |
shellHook = '' |
nixpkgs
cheatsheetTips and tricks for one who wants to write expressions to contribute to NixOS/nixpkgs .
nixpkgs
nix-build <PATH_TO_NIXPKGS> -A <PACKAGE>
""" | |
Backward slice from a given sink. | |
Unfortunately, the BB definition used by Radare2 is too limiting: | |
https://github.com/radareorg/radare2/issues/7170#issuecomment-631579110 | |
""" | |
from functools import reduce | |
import r2pipe | |
import sys |
/* | |
* Help write shellcodes targetting MSP430: | |
* ``` | |
* msp430-elf-as shellcode.s -o shellcode.o | |
* msp430-elf-objcopy --dump-section .text=shellcode shellcode.o | |
* od -An -t x1 shellcode | tr -d ' ' | |
* ``` | |
*/ | |
with import <nixpkgs> { |
import os | |
from networkx.drawing.nx_agraph import write_dot | |
write_dot(netowrkx_graph, 'graph.dot') | |
os.system('dot -Ksfdp -Tsvg -o graph.svg graph.dot') |
with import <nixpkgs> { }; | |
let | |
python3WithCoolPackages = python3.withPackages(ps: with ps; [ | |
flask | |
ipdb | |
ipython | |
lxml | |
manpages | |
pycrypto |