代码搜索:Scan
找到约 10,000 项符合「Scan」的源代码
代码结果 10,000
www.eeworm.com/read/247748/12621409
txt scan程序.txt
有很多网站为了安全起见,在WEB Server前面架了防火墙,或者做了TCP/IP过滤,对外只开放TCP 80 端口。从入侵者角度来看,要入侵那么从80上跑的CGI入手是比较可行的,当然也可以用别的办法,例如旁敲侧击,呵呵。从网管角度来看,一是要保证CGI的安全性,另外网络的整体安全性也是很重要的。针对基于80端口入侵、防范而出的CGI扫描器数不胜数,但基本上原理都一样。
CGI ...
www.eeworm.com/read/247493/12655999
h scan.h
/* File: scan.h
The scanner interface for the TINY compiler
*/
#ifndef _SCAN_H
#define _SCAN_H
/* MAXTOKENLEN is the maximum size of a token */
#define MAXTOKENLEN 40
/* tokenString ar
www.eeworm.com/read/247493/12656004
c scan.c
/* File: scan.c
The scanner implementation for the TINY compiler
*/
#include "globals.h"
#include "util.h"
#include "scan.h"
/* states in scanner DFA */
typedef enum
{ START, INASSIGN,
www.eeworm.com/read/135581/13918952
c scan.c
/*
* JFFS2 -- Journalling Flash File System, Version 2.
*
* Copyright (C) 2001 Red Hat, Inc.
*
* Created by David Woodhouse
*
* The original JFFS, from which the de
www.eeworm.com/read/300213/13928880
exe scan.exe
www.eeworm.com/read/300213/13928893
c scan.c
www.eeworm.com/read/236729/14001187
h scan.h
www.eeworm.com/read/134095/14008542
cpp scan.cpp
#include "globals.h" //分析器的词法扫描部分
#include "scan.h"
void Do_Tag(char * strSource); //识别标识符的中间状态
void Do_Digit(char * StrSource); //识别数字中间状态
void Do_EndOfT
www.eeworm.com/read/134095/14008552
h scan.h
#ifndef _SCAN_H //词法分析器的接口
#define _SCAN_H
#define _TAB_LEGNTH 4 //一TAB占用的空格数
#include
//#define _KEY_WORD_END "waiting for your expanding"