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
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.shortcuts import render | |
from django.http import JsonResponse, HttpResponse | |
import requests | |
from requests_toolbelt import SSLAdapter | |
from OpenSSL import SSL | |
from subprocess import check_output | |
import shutil |
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
#ifndef LIST_H | |
#define LIST_H | |
template <class T> | |
class List { | |
public: | |
List() { | |
this->size = 0; | |
this->capacity = 10; | |
this->array = new T[0](); |
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
import socket | |
import sys | |
import subprocess | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
server_address = ('localhost', 11112) | |
print >>sys.stderr, 'starting up on %s port %s' % server_address | |
sock.bind(server_address) |
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
#define SRV_IP "127.0.0.1" | |
#include <arpa/inet.h> | |
#include <netinet/in.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <unistd.h> | |
#include <string.h> |
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
#define SRV_IP "127.0.0.1" | |
#include <arpa/inet.h> | |
#include <netinet/in.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <unistd.h> | |
#include <string.h> |
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
#include <iostream> | |
#include <Windows.h> | |
using namespace std; | |
int _baseAddress = 0x5B15825C; | |
int main(){ | |
DWORD pid; | |
HANDLE hProcess; |
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
警告:不要去访问什么暗网、深网,跟着党的步伐走才是王道,远离一些不健康、不安全的东西。 | |
1.http://newmap.norsecorp.com/ norse attack map | |
2.http://22u75kqyl666joi2.onion/ 暗网中文论坛 | |
3.http://reloadedudjtjvxr.onion/road.php 丝绸之路3.0 | |
4.http://www.normalpornfornormalpeople.com/ normal人体试验血腥网址(需要账号) | |
5.http://prnstmrpfkgkaw5v.onion/ 小福利 | |
6.http://iuhcjx6fpeafstuu.onion/ Scream bitch! | |
7.http://6soqvgf7mrjc7w3j.onion/bbs/index.php 114中文论坛 | |
8.http://6soqvgf7mrjc7w3j.onion/chat/blab73/index.php 114聊天室 (马克斯AKeD jasonlee1573) | |
9.http://xmi6ngumdv6ohjbm.onion/ 天堂庄园CP网址 |
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
\d\d\d\A\A\A |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#define MAX_NUM_LINK 50 | |
#define MAX_NUM_NODE 50 | |
struct link { | |
int ends[2]; | |
double cost; | |
}; |
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
import requests | |
from requests_toolbelt import SSLAdapter | |
from OpenSSL import SSL | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) | |
req = requests.Session() | |
req.mount('https://', SSLAdapter('TLSv1')) | |
vcode = req.get('https://stu255.ntust.edu.tw/ntust_stu/VCode.aspx',verify=False, stream=True) |