How you will do server security testing for any website?
How you will do server security testing for any website?
Regards,
Brijesh Jain
---------------------------------------------------------
Connect with me on Skype: jainbrijesh
Google Plus : jainbrijeshji
1.login logout check
2.link check
3.Broken link check
4.Cookie check
5.Temporary file check
I m not fully satisfied with the animesh. the above mentioned points we do in the Fucntional Testing of Websites.
The server side testing includes more than this.
It includes 1. Virus protection
2. Password protection
3. Connectivity with the system.
4. Rollback Facility.
5. Connectivity with the tools.
Hoe do we perform "Cookie check and Temporary file check"???
Thanks,
ashi
WebUtil.DeleteCookies: We can use this command to those scenarios where we can close the browser completely. Means if we are using this command, we need to make sure not a single IEExplorer in opened in the task manager. If a single IEExplorer is opened in the task manager this command will not work as it can not kill the session and the temp folder will be in read only mode. The objective is not fulfilled.
Secondly, it can not handle such cookies which are written in a log file or in a .txt format ...what i mean those browsers who handles cookie in different way like..Opera etc
Imagine a situation where the demo is displayed over sametime meeting-room or WebEx meeting which requires an/two active webpage(s) needs to be opened (i.e. IE-Explorer). The command will fail in those scenarios. Or it will close the sharing window (browsers) which may create a noise to the viewer level.
The other old method might take a few seconds more but will not arise such situation.
Older solution
Sub netCacheClear()
systemutil.Run "iExplore.exe",sURL
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "%"+"{T}"
set WshShell = Nothing
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{o}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "%"+"{i}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{Enter}"
set WshShell = Nothing
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "%"+"{f}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "^"+"{d}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{Enter}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "%"+"{h}"
set shShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{Tab}"
set WshShell = Nothing
wait(1)
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{Enter}"
set WshShell = Nothing
set WshShell = CreateObject("WScript.Shell")
WshShell.Sendkeys "{Enter}"
set WshShell = Nothing
End sub
make sure while dealing with normal cookie the session cookie should be untouched