You are here |
www.trickster.dev | ||
| | | |
goggleheadedhacker.com
|
|
| | | | This article goes over how to use r2pipe to automate reverse engineering tasks. It will step throug creating a radare2 plugin to deobfuscate strings in a malware sample. | |
| | | |
ricardo.cc
|
|
| | | | Stories about code, design, coffee and other good stuff. | |
| | | |
ariya.io
|
|
| | | | A common approach to analyze JavaScript source statically is to parse the source into an abstract syntax tree (AST) and then to traverse the AST. An alternative approach that might work in a few cases is to inspect each syntax node as it is constructed. | |
| | | |
elvanydev.com
|
|
| | Handling errors properly have always been an important and delicate task when it comes to making our applications more reliable. It is true that we can't know when an exception will happen, but it is true that we can control how our applications should behave under an undesirable state, such as a handled or unhandled exception scenario. When I say that we can control the behavior when the application fails, I'm not only referring to logging the error; I mean, that's important, but it's not enough! Nowadays with the power of cloud computing and all of its advantages, we can build robust, high availability and scalable solutions, but cloud infrastructure brings with its own challenges as well, such as transient errors. It is true that transient faults can occur in any environment, any platform or operating system, but transient faults are more likely in the cloud due to its nature. |