Search>Text>输入字符串
ps:这时候找到的字符串在comment里面能看见,如果不开auto comment的话,可能会看的一头雾水。
IDA过程:Debugger>Attach to process>Debugger warning>Choose process to attach to>成功进入附加调试
IDA官方给出的处理器类型如下:
1.建立处理数据库连接的ASP程序,首先建立用户端输入界面,在输入界面中需要有数据库名称、用户名称与用户密码等三个字段。2.建立数据库的连接的ASP程序,首先要建立一个ORASESSION对象,用CREATEOBJECT方法建立ORASESSION对象。语法如下:
set orasession=createobjext("oracleinprocserver.xorasession")
“oracleinprocserver”在计算机中所登录的“名称”“oracleinprocserver.xorasession”
3.建立ORASESSION对象,接着建立ORADATABASE对象,要建立ORADATABASE对象的OPENDATABASE和DBOPENDATABASE方法。
4.set oradatabase=orasession.opendatabase("数据库别名","用户帐号/密码","启动类型")
5.set oradatabase=orasession.dbopendatabase("数据库别名","用户帐号/密码","启动类型")
用BOA作为WEB SERVER编译流程说明WEB SERVER 编译流程说明:
1. 用BOA作为WEB SERVER
\src\makefile下载见附件。
2. 按照"举例介绍uclinux应用程序的编译方法"的步骤编译。但是在第7小步,要修改inittab.conf
/etc>cat inittab
inet:unknown:/bin/inetd
boa:unknown:/bin/boa -c /home 加入这一行
并且把boa.conf 和mime.types文件修改并拷贝到/home目录
为了让boa简单的跑起来:
boa.conf修改方法,粗体字表示修改了
# Boa v0.94 configuration file
# File format has changed little from 0.92
# version changes are noted in the comments
#
# The Boa configuration file is parsed with a lex/yacc or flex/bison
# generated parser. If it reports an error, the line number will be
# providedit should be easy to spot. The syntax of each of these
# rules is very simple, and they can occur in any order. Where possible
# these directives mimic those of NCSA httpd 1.3I saw no reason to
# introduce gratuitous differences.
# The "ServerRoot" is not in this configuration file. It can be compiled
# into the server (see defines.h) or specified on the command line with
# the -c option, for example:
#
# boa -c /usr/local/boa
# Port: The port Boa runs on. The default port for http servers is 80.
# If it is less than 1024, the server must be started as root.
Port 80
# User: The name or UID the server should run as.
# Group: The group name or GID the server should run as.
User 0
# nobody
Group 0
# nogroup
# ServerAdmin: The email address where server problems should be sent.
# Note: this is not currently used.
#ServerAdmin root@localhost
# ErrorLog: The location of the error log file. If this does not start
# with /, it is considered relative to the server root.
# Set to /dev/null if you don't want errors logged.
#ErrorLog /home/error_log
#/var/log/boa/error_log
#ErrorLog /dev/null
# AccessLog: The location of the access log file. If this does not
# start with /, it is considered relative to the server root.
# Comment out or set to /dev/null (less effective) to disable
# Access logging.
#AccessLog /var/log/boa/access_log
#AccessLog /dev/null
# RefererLog: The location of the referer log file. If this does not
# start with /, it is considered relative to the server root.
# Comment out or set to /dev/null (less effective) to disable
# referer logging.
#RefererLog /var/log/boa/referer_log
#RefererLog /dev/null
# AgentLog: The location of the agent log file. If this does not
# start with /, it is considered relative to the server root.
# Comment out or set to /dev/null (less effective) to disable
# User-Agent logging.
#AgentLog /dev/null
#AgentLog /var/log/boa/agent_log
# VerboseCGILogs: this is just a logical switch.
# Comment out to disable.
#VerboseCGILogs
# ServerName: the name of this server that should be sent back to
# clients if different than that returned by gethostname -- often
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)