All Projects → Medicean → SublimeXssEncode

Medicean / SublimeXssEncode

Licence: other
Converts characters from one encoding to another using a transformation.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to SublimeXssEncode

simple-ftp-deploy
This package for Sublime Text 3 give you possibility to auto upload file to FTP server when you save local file.
Stars: ✭ 16 (-56.76%)
Mutual labels:  sublime-text, sublime-text-plugin
CSSFontFamily
CSSFontFamily is a Sublime Text plugin with a collection of font stacks autocomplete.
Stars: ✭ 15 (-59.46%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-import-helper
A Sublime Text Plugin that helps you to import your modules.
Stars: ✭ 69 (+86.49%)
Mutual labels:  sublime-text, sublime-text-plugin
Editorconfig Sublime
Sublime Text plugin for EditorConfig - Helps developers maintain consistent coding styles between different editors
Stars: ✭ 1,749 (+4627.03%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-better-ruby
Sublime Text Ruby package (snippets, builder, syntax highlight)
Stars: ✭ 33 (-10.81%)
Mutual labels:  sublime-text, sublime-text-plugin
SaneSnippets
Sublime Text snippets optimized for humans, not robots
Stars: ✭ 59 (+59.46%)
Mutual labels:  sublime-text, sublime-text-plugin
zephir-sublime
Sublime Text syntax highlighting for for Zephir
Stars: ✭ 41 (+10.81%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-text
Subime Text 相关资源收集整理
Stars: ✭ 62 (+67.57%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-live-server
🌍️ Launch a Development Server directly from Sublime Text
Stars: ✭ 49 (+32.43%)
Mutual labels:  sublime-text, sublime-text-plugin
Sublime-Pretty-Shell
🐚 Shell Script Formatter / Syntax Checker (Powered by shfmt)
Stars: ✭ 28 (-24.32%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-profiles
Profile Switcher for Sublime Text
Stars: ✭ 59 (+59.46%)
Mutual labels:  sublime-text, sublime-text-plugin
CodeChampion
Plays epic sound clips when you write epic code on sublime Text!
Stars: ✭ 30 (-18.92%)
Mutual labels:  sublime-text, sublime-text-plugin
sublime-monokai-free
A beautiful, modern, high quality, Monokai theme for Sublime Text 3.
Stars: ✭ 46 (+24.32%)
Mutual labels:  sublime-text
YaraSyntax
YARA package for Sublime Text
Stars: ✭ 15 (-59.46%)
Mutual labels:  sublime-text
go-rison
Go port of Rison, a data serialization format optimized for compactness in URIs.
Stars: ✭ 23 (-37.84%)
Mutual labels:  encoding
scure-base
Secure, audited & 0-deps implementation of bech32, base64, base32, base16 & base58
Stars: ✭ 27 (-27.03%)
Mutual labels:  encoding
Crypto
封装多种CTF和平时常见加密及编码C#类库
Stars: ✭ 20 (-45.95%)
Mutual labels:  encoding
nginx-module-url
Nginx url encoding converting module
Stars: ✭ 17 (-54.05%)
Mutual labels:  encoding
sia
Sia - Binary serialisation and deserialisation
Stars: ✭ 52 (+40.54%)
Mutual labels:  encoding
Nineties
💾 Colors for World Wide Web pioneers
Stars: ✭ 16 (-56.76%)
Mutual labels:  sublime-text

Sublime XssEncode

English | 中文说明

Converts characters from one encoding to another using a transformation. This tool will help you encode payloads in testing sql injections, XSS holes and site security.

Convert the region you selected or convert all characters.

XssEncode supports both Sublime Text 2 and 3.

Installation

Using Package Control to find, install and upgrade XssEncode is the recommended method to install this plug-in.

Otherwise, you can use the following steps manually install:

  1. Open the Sublime Text Packages folder

    • OS X: ~/Library/Application Support/Sublime Text 3/Packages/
    • Windows: %APPDATA%/Sublime Text 3/Packages/
    • Linux: ~/.Sublime Text 3/Packages/ or ~/.config/sublime-text-3/Packages
  2. clone this repo

    git clone https://github.com/Medicean/SublimeXssEncode.git
    
  3. Rename the new folder to xssencode

ChangeLog

See more at ChangeLog

Example Commands

You can type the Command HotKeys(Win: ctrl+shift+p, OSX: Command+shift+p),type xssencode and choice your action。Otherwise, click the menu bar tools => XssEncode and choice your action.

  • html_escape

    Converts characters to their HTML entity.

    eg:

    a1@& => a1@&

  • html10_encode

    Converts characters to html entity with decimal.

    eg:

    a1@& => a1@&

  • html16_encode

    Converts characters to html entity with hexadecimal.

    eg:

    a1@& => a1@&

  • html_unescape

    Converts html entity to characters.

    eg:

    aaa& => aaa&

  • base64_encode

    Uses base64 to encode into base64

    eg:

    a1@& => YTFAJg==

  • base64_decode

    eg:

    YTFAJg== => a1@&

  • url_encode

    eg:

    alert(/xss/); => alert%28/xss/%29%3B

  • url_decode

    eg:

    alert%28/xss/%29%3B => alert(/xss/);

  • string_from_char_code

    eg:

    alert(/xss/); => String.fromCharCode(97,108,101,114,116,40,47,120,115,115,47,41,59)

  • mysql_char

    eg:

    123 => CHAR(49,50,51)

    You can excute the sql commands below.

    select 123;

    select CHAR(49,50,51);

  • oracle_chr

    eg:

    123 => CHR(49)||CHR(50)||CHR(51)

    You can excute the sql commands below.

    select 123;

    select CHR(49)||CHR(50)||CHR(51);

  • php_chr

    Convert characters with function chr.

    eg:

    Support we have a php backdoor, and the content is <?php @eval($_REQUEST[cmd]);?>

    if you want to execute some commands which includes special chars, you can convert it.

    ls -al => CHR(108).CHR(115).CHR(32).CHR(45).CHR(97).CHR(108)

    now you can request the url below:

    http://127.0.0.1/backdoor.php?cmd=system(CHR(108).CHR(115).CHR(32).CHR(45).CHR(97).CHR(108));

  • string_to_hex

    Convert string to hexadecimal, it's more useful for sql injection.

    eg:

    root => 726f6f74

    now you can excute the sql commands below.

    SELECT user from mysql.user where user='root';

    SELECT user from mysql.user where user=0x726f6f74;

  • hex_to_string

    eg:

    726f6f74 => root

  • unicode_decode

    eg:

    测试 => \u6d4b\u8bd5

  • unicode_encode

    eg:

    \u6d4b\u8bd5 => 测试

  • md5_encode

    eg:

    1 => c4ca4238a0b923820dcc509a6f75849b

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].