Jalangi2
Jalangi2 Chrome Extension for Javascript code analysis
Cos'è Jalangi2?
Jalangi2 è un'estensione di Chrome sviluppata da gembigfan, e la sua funzione principale è "Jalangi2 Chrome Extension for Javascript code analysis".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jalangi2
Scarica i file di estensione Jalangi2 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This is Chrome extension (Devtool) for Jalangi2 to perform dynamic javascript analysis. A user can easily implement their own user-script to perform customized javascript analysis such as finding bugs, performance problems and taint analysis.
Prerequisites:
1. python
2. node
3. mitmproxy
Steps for installation:
1. git clone https://[email protected]/jedihy/jalangi2-chrome.git
2. cd jalangi2
3. npm install
4. mitmdump -p 9999 --anticache -s "jalangi2/scripts/proxy.py --inlineIID --inlineSource"
In this version, you have to use port 9999 for mitmdump because the port number is hardcoded in the extension. Informazioni di Base sull'Estensione
| Nome | |
| ID | bjchnamfmkkcejgiacanfhnokbchijoj |
| URL Ufficiale | https://chrome.google.com/webstore/detail/jalangi2/bjchnamfmkkcejgiacanfhnokbchijoj |
| Descrizione | Jalangi2 Chrome Extension for Javascript code analysis |
| Dimensione del File | 1.45 MB |
| Conteggio Installazioni | 42 |
| Versione Corrente | 0.1 |
| Ultimo Aggiornamento | 2016-11-30 |
| Data di Pubblicazione | 2016-11-30 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | gembigfan |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Jalangi2",
"version": "0.1",
"description": "Jalangi2 Chrome Extension for Javascript code analysis",
"devtools_page": "proxy.html",
"manifest_version": 2,
"web_accessible_resources": [
"*"
],
"icons": {
"16": "logo.png",
"32": "logo.png",
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"injector.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"proxy",
"activeTab",
"http:\/\/*\/",
"https:\/\/*\/",
"*:\/\/*\/*",
"tabs"
]
} | |