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
#-*-coding: utf-8 -*- | |
#!/usr/bin/python | |
import requests | |
def sendMsg(msg): | |
url_space_login = 'http://f.10086.cn/huc/user/space/login.do?m=submit&fr=space' | |
url_login = 'http://f.10086.cn/im/login/cklogin.action' | |
url_sendmsg = 'http://f.10086.cn/im/user/sendMsgToMyselfs.action' | |
parameter= { 'mobilenum':'yourmobile', 'password':'yourpassword'} |
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
#!/bin/bash | |
apk_file=$1 | |
if [ -z $apk_file ]; then | |
apk_file_num=`ls *.apk | wc -l | tr -d ' '` | |
if [ $apk_file_num -gt 1 ]; then | |
echo "Ambiguous apk_files. Please enter one APK to inspect." | |
exit -1 | |
fi | |
apk_file=`ls *.apk` |
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
<!-- https://example.com/sms.html?phone=12306&content=999 --> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>发送短信</title> | |
</head> | |
<body> | |
<script> |
OlderNewer