This file contains 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
// 用法 console.log(decrypt(加密的js内容)) | |
// console里面输出的内容就是解密后的内容,解密后的内容里面仍然含有 _0xXXXX 这样的混淆后的字符串, 需要一点点进行重命名 | |
// 下面的代码以前从网上找的,已经找不到出处了。。。 | |
function decrypt(js_body) { | |
// 脱壳 && 解密 | |
let js_arr = js_body.split("\n").pop().split(';'), | |
fun_name = /var\s+(_0x[a-z0-9]+)=/.exec(js_arr[6])[1], | |
reg_str = fun_name + '\\(' + "'([^']+)',\s*'([^']+)'" + '\\)', | |
js_str = js_arr.slice(54, js_arr.length - 4).join(' ;'), |
This file contains 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
05qwmtwxa3ev.com | |
5pr1sfzsl9.com | |
68710266.com | |
970ztqtss4.com | |
allmygoodlife.com | |
au79nt5wic4x.com | |
bbom2b434493.com | |
brother-root-rich-of.xyz | |
cjf25jklrwqt.com | |
contstswnrs.best |
This file contains 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
<?php | |
$hkscspua2uni = array_change_key_case(array( | |
"E000" => "20547", | |
"E001" => "92DB", | |
"E002" => "205DF", | |
"E003" => "23FC5", | |
"E004" => "854C", | |
"E005" => "42B5", | |
"E006" => "73EF", | |
"E007" => "51B5", |
This file contains 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
# For working in Centos 7 | |
xstat() { | |
for target in "${@}"; do | |
inode=$(ls -di "${target}" | cut -d ' ' -f 1) | |
fs=$(df "${target}" | tail -2 | head -n 1 | awk '{print $1}') | |
crtime=$(sudo debugfs -R 'stat <'"${inode}"'>' "${fs}" 2>/dev/null | | |
grep -oP 'crtime.*--\s*\K.*') | |
printf "%s\t%s\n" "${crtime}" "${target}" | |
done | |
} |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="http://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"> | |
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js"></script> | |
<script src="http://ajax.aspnetcdn.com/ajax/bootstrap/3.3.4/bootstrap.min.js"></script> | |
<style> |