project

February 5, 2019

GSoC 2018 Project Summary: Infection Monkey

The Infection-Monkey team for GSoC 2018 wrote this post as a project summary of their GSoC 2018 experience Team: Student: Vakaris Žilius Mentor: Daniel Goldberg Introduction […]
July 13, 2009

A review to what we have done yet

Our work mainly focuses on DOM simulation. I believe the following is the most important for deobfuscation, but we also do lot more so that our […]
June 18, 2009

A python object: It can be everything!

The code is like this: class unknown_obj(object):     def __call__(self, *arg): return unknown_obj()     def __getitem__(self, key): return unknown_obj()     def __getattr__(self, name): return unknown_obj()   […]
June 3, 2009

A few differences between IE7 and FF3, what we discovered in coding

There are of course more of them, but we only list which will bringconfusion to our code. Note that the current version is based on IE,not […]
June 3, 2009

Something about python: __setattr__ and __getattr__

It seems that there was some problems in this blog system, and i was busy with my final exam, so i haven’t written blog a long […]