#import( class , HashArray )
CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);
int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{
this->DeleteDomainPhishing("bank.com");
HashArray indexkey = new HashArray();
this->ViewPhishingDB(indexkey);
this->Print(this->Format("%d", indexkey->GetRecordCount()));
delete indexkey;
return 0;
}
|