- 浏览: 292825 次
-
最新评论
文章列表
[置顶] virutalization
- 博客分类:
- linux
https://blog.jtlebi.fr/2014/01/19/introduction-to-linux-namespaces-part-5-net/
http://crosbymichael.com/creating-containers-part-1.html
[置顶] windows提权集合
- 博客分类:
- windows
https://blog.netspi.com/5-ways-to-find-systems-running-domain-admin-processes/
http://www.solutionary.com/resource-center/blog/2014/06/internal-network-enumeration-and-privilege-escalation/
https://www.offensive-security.com/metasploit-unleashed/privilege-escalation/
使用GCC/GNU-ld删除dead code
- 博客分类:
- linux
[url]
https://gcc.gnu.org/ml/gcc-help/2003-08/msg00128.html
https://embeddedfreak.wordpress.com/2009/02/10/removing-unused-functionsdead-codes-with-gccgnu-ld/
[/url]
引用
Hi Dr. Rupp,
I was just looking into this very thing!
Do this in your Makefile...
--------8<--------
DEADCODESTRIP := -Wl,-st ...
使用最新的burpsuite免费版,出现了
引用
Error: Invalid or corrupt jarfile burpsuite_free_v1.6.32.jar
错误
解决方案:
mv burpsuite_free_v1.6.32.jar burpsuit.jar
unzip -d burpsuit.jar ./tmp
cd ./tmp
jar cmvf META-INF/MANIFEST.MF burpsuite.jar ./*
java -jar burpsuite.jar
python 修饰器
- 博客分类:
- linux
def wrapper1(function):
print("In wrapper1 pre")
@functools.wraps(function)
def wrapper(*args, **kwargs):
print("In wrapper1 wrapper")
args = [float(arg) for arg in args]
return float(function(*args, **kwargs))
print("In wrappe ...
引用 sudo apt-get install linux-headers-generic build-essential dkms
sudo apt-get install linux-source
sudo apt-get install --reinstall bcmwl-kernel-source
sudo modprobe wl
http://finalshares.cn/attachment/1509/thread/95_80_cbcb426e1ba4faf.jpg
编译
For gdb:
/path/to/gdb-src/configure --target=arm-linux-gnueabi
make
For GDBserver
引用/path/to/gdb-src/gdb/gdbserver/configure --host=arm-linux-gnueabi
../.././../gnulib/import/mbrtowc.c:125: error: 'MB_CUR_MAX' undeclared (first use in this function)
vim ../gnulib/import/mbrtowc.c
#defi ...
linux change boot image
- 博客分类:
- linux
1. change grub2
引用vim /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_GFXMODE=1366x768
2. convert jpg image to png image
引用mogrify -format png OnePiece.jpg
3. change the image in plymouth
cd /lib/plymouth/themes/XXX-logo/
mv wallpaper.png wallpaper.png.bkp
cp /home/jaso ...
binwalk --dd
- 博客分类:
- linux
http://www.devttys0.com/2012/12/binwalk-0-5-release/
引用
binwalk --dd='gzip:gz:gunzip %e' firmware.bin
The above command instructs Binwalk to extract any file whose description contains the text ‘gzip’, save it to disk with a ‘gz’ file extension, and to then run the ‘gunzip %e’ command (the %e is a ...
embeded LD_PRELOAD
- 博客分类:
- linux
引用
eve@eve:~/squashfs-root$ sudo chroot . ./qemu-arm -E LD_PRELOAD="/nvram.so" usr/sbin/httpd
usr/sbin/httpd: relocation error: /nvram.so: symbol __register_frame_info, version GLIBC_2.0 not defined in file libgcc_s.so.1 with link time reference
eve@eve:~/squashfs-root$
引用
#include <s ...
hardware hacking
- 博客分类:
- linux
For video stuff: https://www.youtube.com/watch?v=FYPhEgbiWrk
command:http://pastebin.com/k4mwgS6T
引用
#http://alexkaskasoli.com/wansview.pdf <-- notes
#wansview IPCAM telnet firmware 51.3.0.152
#user: root
#password: 123456
#get full version of busybox
#download to desktop mipsel version
wget ...
引用apt-get install -y linux-headers-$(uname -r)
apt-get install broadcom-sta-dkms firmware-brcm80211 firmware-b43-installer
linux 备份系统
- 博客分类:
- linux
引用备份
dd if=/dev/sda > myimage.img
引用还原
cat myimage.img | dd of=/dev/sda
引用压缩
dd if=/dev/sda | gzip -c > myimage.img
引用还原
gunzip -c myimage.img | dd of=/dev/sda