
Quote-
Protection against spying through loading
the complete movie into another movie.
if(_root != _level0){
//holla, we get spyed by someone
}
Protection against disassembling:
- Hide code, by putting important code into movieclips
- Hide code by putting code into external swf. Give the
swf a name like pixel.gif.
- Use complicated names in programming
- write long code, which is never used
Protection against spying with notepad
- Don't use the complete cgi address. It is better
to build the address at runtime.
- Instead of naming your variables like points, user,
password, it is better to name them like x34g, fgh65
and qwe223.
- You can use properties instead ot variables to store
results, eg. instead of points=30; use _root.someMc._x=30;
Protection against spying with a proxy or sniffer
- use POST
- use absolute serveraddresses
- encrypt variables and values into one big package
- add tons of useless information
- use GET and POST at the same time
Protection against calling the server with a manipulated swf:
- send _url to the cgi ;)