12 2018 档案
摘要:#include<stdio.h>#include<unistd.h>#include<sys/wait.h>int main(){ int fd[2]; char buf[80]; pid_t pid; pipe(fd); if((pid = fork()) > 0){ printf("This
阅读全文
摘要:1 #coding=utf-8 2 import socket 3 import time 4 import sys 5 6 def portScanner(ip,port): 7 server = (ip,port) 8 sockfd = socket.socket(socket.AF_INET,socket.SOCK_STREAM) 9...
阅读全文