//#Implement the GetInstance method of ActivePlugin class. This method is used to create new instances of this plugin.
 public override ActivePlugin GetInstance()
 {
     ServerSideRequestForgeryCheck p = new ServerSideRequestForgeryCheck();
     p.Name = "Server Side Request Forgery";
     p.Description = "A plugin to discover SSRF vulnerabilities";
     p.Version = "0.1";
     p.FileName = "Internal";
     return p;
 }
Example #2
0
        //#Implement the GetInstance method of ActivePlugin class. This method is used to create new instances of this plugin.
        public override ActivePlugin GetInstance()
        {
            ServerSideRequestForgeryCheck p = new ServerSideRequestForgeryCheck();

            p.Name        = "Server Side Request Forgery";
            p.Description = "A plugin to discover SSRF vulnerabilities";
            p.Version     = "0.1";
            p.FileName    = "Internal";
            return(p);
        }