This file contains hidden or 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
/* | |
* Use curl for http to send body for the form array, header for the head array | |
* Reference: http: //www.q3060.com/list3/list117/28490.html | |
*/ | |
function sendPostRequest($url,$body,$header=null) | |
{ | |
$ch = curl_init (); | |
curl_setopt ( $ch, CURLOPT_URL, $url ); | |
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Expect: ")); //Increase the sending speed : | |
curl_setopt($ch, CURLOPT_POST,true); |
This file contains hidden or 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
vi /etc/sysctl.conf | |
将 net.ipv4.ip_forward=0 | |
修改成 net.ipv4.ip_forward=1 | |
sysctl -p | |
iptables -L -n -t nat 看规则列表 | |
iptables -t nat -F 清空原有的nat规则 | |
iptables -t nat -Z 清空原有的nat规则 | |
iptables -F 清空所有的正常规则 | |
iptables -X 清空所有的正常规则 | |
iptables -Z 清空所有的正常规则 |
This file contains hidden or 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
$.ajax({ | |
url: '/echo/error/', | |
async: true, | |
// retryCount and retryLimit will let you retry a determined number of times | |
retryCount: 0, | |
retryLimit: 10, | |
// retryTimeout limits the total time retrying (in milliseconds) | |
retryTimeout: 10000, | |
// timeout for each request | |
timeout: 1000, |
This file contains hidden or 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
select a.oldman_name,b.org_id | |
From tbl_assess_oldman_ability a LEFT JOIN tbl_assess_user b | |
ON a.assess_user_id=b.admin_id | |
where b.org_id=15 |
This file contains hidden or 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
You can upload data and files with one form using ajax. | |
PHP + HTML | |
<? | |
print_r($_POST); | |
print_r($_FILES); | |
?> | |
<form id="data" method="post" enctype="multipart/form-data"> |
This file contains hidden or 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
package main | |
import ( | |
"crypto/cipher" | |
// "github.com/labstack/gommon/log" | |
"golang.org/x/crypto/blowfish" | |
"fmt" | |
) | |
func main() { | |
// decrypt() | |
encrypt() |
This file contains hidden or 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
#!/bin/bash | |
case "$1" in | |
"start") | |
echo "$0 starting..."; | |
privoxy /config; | |
echo "$0 started...";; | |
"stop") | |
echo "$0Stoping..."; | |
killall privoxy; | |
echo "$0 Stoped...";; |
This file contains hidden or 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
iptables -t nat -A PREROUTING -d 1.2.3.4 -p tcp --dport 3389 -j DNAT --to 192.168.1.1:3389 | |
类似这个的。 | |
1.2.3.4是你的外网IP 192.168.1.1是你想映射到外网的内网服务器。 | |
如果vps有多个ip,可以实现ip之间端口转发 |
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"net" | |
"time" | |
"bufio" | |
) | |
func handleConnection(conn net.Conn) { |
This file contains hidden or 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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"net/url" | |
) |
OlderNewer