- 浏览: 6900 次
- 性别:
- 来自: 深圳
最新评论
文章列表
Reference : http://www.sdandroid.com/jrebel-Crack-method.html
1.Using jd-gui to find validation license class which invoke method and return boolean type.
public byte[] getSignature()
{
return this.signature;
}
2.Using javassist to crack validation class to set validation mathod always ...
1.Open Java EE perspective, New Tomcat 7 Server and Deploy Web Project.
Double click Tomcat Server open server configuration.
2.Overview Tag> General Information > Open launch configuration > Arguments Tag
1)Method 1: append VM arguments content as below:
-noverify
-javaagent:E: ...
sed Tutorial
- 博客分类:
- Linux
1.s option
$ cat pets.txt
This is my cat
my cat's name is betty
This is my dog
my dog's name is frank
This is my fish
my fish's name is george
This is my goat
my goat's name is adam
sed "s/my/Fei's/g" pets.txt sed "s/my/Fei's/g" pets.txt > fei ...
AWK Tutorial
- 博客分类:
- Linux
1.row/column value$0 whole row$1..$n one columnawk '{print $1, $4}' netstat.txt awk '{printf "%-8s %-8s %-8s %-18s %-22s %-15s\n",$1,$2,$3,$4,$5,$6}' netstat.txt
2.filter,comparison operator: ==,!=, >, <, >=, <=awk '$3==0 && $6=="LISTEN" ' netstat.tx ...
原文:http://www.ibm.com/developerworks/cn/opensource/os-lo-apache-tomcat/#ibm-pcon
首先我们先介绍一下为什么要让 Apache 与 Tomcat 之间进行连接。事实上 Tomcat 本身已经提供了 HTTP 服务,该服务默认的端口是 8080,装好 tomcat 后通过 8080 端口可 ...
1.查看crontab说明
[fwang5@szotautotest03 ~]$ more /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day o ...
[root@fwang5stash ~]# ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 7167
max locked memory (kbytes, -l) 32
max me ...