C# 클래스 Fuzzer.XmlFactory.FuzzDescriptionInfo

파일 보기 프로젝트 열기: areiter/InMemoryFuzzing 1 사용 예제들

공개 메소드들

메소드 설명
AddFuzzLocation ( IFuzzLocation fuzzLocation ) : void
FuzzDescriptionInfo ( ITargetConnector connector ) : System
ParseRegionAddress ( string regionSpecifier, bool allowMethodRet, ITargetConnector connector ) : IAddressSpecifier
SetFuzzRegionEnd ( string regionSpecifier ) : void

Sets the end of the region to fuzz

For details see SetFuzzRegionStart

SetFuzzRegionStart ( string regionSpecifier ) : void

Sets the start of the region to fuzz. See remarks for regionSpecifier syntax

Valid region specifiers are: method: ... Resolves to the start (after the prolog) of the specified function methodret: ... Resolves to the "end" of the specified method. A break is set to the instruction right after the method call address:0x12345678 ... Resolves to the specified address source:: ... Resolves to the first instruction of the specified source code line. This specifier is only availabe if debugging symbols and source code is available, and the symbol table implementation supports it. If the specifier has an invalid format a FuzzParseException is thrown

비공개 메소드들

메소드 설명
AssertSymbolTable ( ITargetConnector connector ) : void

메소드 상세

AddFuzzLocation() 공개 메소드

public AddFuzzLocation ( IFuzzLocation fuzzLocation ) : void
fuzzLocation IFuzzLocation
리턴 void

FuzzDescriptionInfo() 공개 메소드

public FuzzDescriptionInfo ( ITargetConnector connector ) : System
connector ITargetConnector
리턴 System

ParseRegionAddress() 공개 정적인 메소드

public static ParseRegionAddress ( string regionSpecifier, bool allowMethodRet, ITargetConnector connector ) : IAddressSpecifier
regionSpecifier string
allowMethodRet bool
connector ITargetConnector
리턴 IAddressSpecifier

SetFuzzRegionEnd() 공개 메소드

Sets the end of the region to fuzz
For details see SetFuzzRegionStart
public SetFuzzRegionEnd ( string regionSpecifier ) : void
regionSpecifier string
리턴 void

SetFuzzRegionStart() 공개 메소드

Sets the start of the region to fuzz. See remarks for regionSpecifier syntax
Valid region specifiers are: method: ... Resolves to the start (after the prolog) of the specified function methodret: ... Resolves to the "end" of the specified method. A break is set to the instruction right after the method call address:0x12345678 ... Resolves to the specified address source:: ... Resolves to the first instruction of the specified source code line. This specifier is only availabe if debugging symbols and source code is available, and the symbol table implementation supports it. If the specifier has an invalid format a FuzzParseException is thrown
public SetFuzzRegionStart ( string regionSpecifier ) : void
regionSpecifier string
리턴 void