Sha256: 4d42a50e04da7b8b2c8d4bf5f148e49bacc503693a823deb3b1691864792b388
Contents?: true
Size: 821 Bytes
Versions: 8
Compression:
Stored size: 821 Bytes
Contents
package burp; /* * @(#)IIntruderAttack.java * * Copyright PortSwigger Ltd. All rights reserved. * * This code may be used to extend the functionality of Burp Suite Free Edition * and Burp Suite Professional, provided that this usage does not violate the * license terms for those products. */ /** * This interface is used to hold details about an Intruder attack. */ public interface IIntruderAttack { /** * This method is used to retrieve the HTTP service for the attack. * * @return The HTTP service for the attack. */ IHttpService getHttpService(); /** * This method is used to retrieve the request template for the attack. * * @return The request template for the attack. */ byte[] getRequestTemplate(); }
Version data entries
8 entries across 8 versions & 1 rubygems