Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code.
Discover gists
Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:
Up Arrow: Will show your last commandDown Arrow: Will show your next commandTab: Will auto-complete your commandCtrl + L: Will clear the screen
| <?php | |
| $countries = | |
| array( | |
| "AF" => "Afghanistan", | |
| "AL" => "Albania", | |
| "DZ" => "Algeria", | |
| "AS" => "American Samoa", | |
| "AD" => "Andorra", | |
| "AO" => "Angola", |
It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive
There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!
| func! SearchHighlight(timer) abort | |
| if !v:hlsearch || mode() isnot 'n' | |
| return | |
| else | |
| let cmd="\<c-\>\<c-n>:let v:hlsearch=0\<cr>\<c-l>" | |
| sil call feedkeys(cmd, 'n') | |
| endif | |
| endfu | |
| func! s:TimerHighlight() abort |
| <?php | |
| add_filter( | |
| 'jet-form-builder/default-process-event/executors', | |
| 'jet_fb_custom_modify_default_executors', | |
| 11 | |
| ); | |
| /** | |
| * Works with JetFormBuilder >= 3.2 |
Más información - Docs Oficiales
- Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node - Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
Share HTML files, visualizations, and interactive demos publicly via Cloudflare Tunnel with live reload support.
The artifacts server lets Mom create HTML/JS/CSS files that you can instantly view in a browser, with WebSocket-based live reload for development. Perfect for dashboards, visualizations, prototypes, and interactive demos.