- This patch fixes Forced Browsing lesson by removing any custom coding for WebSession and HammerHead.java
git-svn-id: http://webgoat.googlecode.com/svn/trunk@34 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
@ -226,8 +226,6 @@ public class WebSession
|
||||
|
||||
private boolean completedHackableAdmin = false;
|
||||
|
||||
private boolean completedHackableConfig = false;
|
||||
|
||||
private int currentMenu;
|
||||
|
||||
/**
|
||||
@ -726,16 +724,6 @@ public class WebSession
|
||||
return ( completedHackableAdmin );
|
||||
}
|
||||
|
||||
/**
|
||||
* Has the user ever hacked the hackable config URL
|
||||
*
|
||||
* @return The hackable config value
|
||||
*/
|
||||
public boolean completedHackableConfig()
|
||||
{
|
||||
return ( completedHackableConfig );
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the authenticated attribute of the WebSession object
|
||||
*
|
||||
@ -1114,14 +1102,6 @@ public class WebSession
|
||||
completedHackableAdmin = true;
|
||||
}
|
||||
}
|
||||
|
||||
public void setHasHackableConfig ( String url)
|
||||
{
|
||||
if ( url.indexOf("config") >= 0)
|
||||
{
|
||||
completedHackableConfig = true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the isDebug.
|
||||
|
Reference in New Issue
Block a user