Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.5.0 #133

Merged
merged 44 commits into from
Mar 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8f48f3d
upgrade all dependencies
LasCC Dec 25, 2022
32464e8
update manifest to version 3
LasCC Dec 25, 2022
76402f7
remove theme component
LasCC Dec 25, 2022
5a80e62
remove themeing components
LasCC Dec 25, 2022
3d6a630
components & styling changes with antd v5
LasCC Dec 25, 2022
4260960
remove div animation
LasCC Dec 25, 2022
3b25756
remove div animations
LasCC Dec 25, 2022
368c3f9
fix typo sqli
LasCC Dec 25, 2022
d8ee4de
update all rss components & fix cors for the cve search
LasCC Dec 25, 2022
eaf65eb
remove animation
LasCC Dec 25, 2022
f28f0e9
update theme switcher with the new antd v5
LasCC Dec 25, 2022
bc2db83
revamp of the reverse shell component
LasCC Dec 25, 2022
3301179
more robust function
LasCC Jan 8, 2023
aa41261
fix text color in dark mode
LasCC Jan 8, 2023
73b85fa
more robust function
LasCC Jan 8, 2023
6f64b1f
fix msfvenom builder
LasCC Jan 8, 2023
c175b21
Adding rust/C reverse shell
rb-x Jan 8, 2023
d0da993
patching mozzilla manifest.json on packing
rb-x Jan 8, 2023
a1977d5
fix dynamic shell in rust/c
rb-x Jan 8, 2023
2ffb27d
quickfix payload
rb-x Jan 10, 2023
682562f
fix tabs revshell.json
LasCC Jan 15, 2023
bdabd73
add select for the theme switcher
LasCC Jan 15, 2023
d23678d
rewrite the entire file_transfer
LasCC Jan 15, 2023
5a9b89f
fix the popup function with => chrome.runtime.getURL
LasCC Jan 15, 2023
e225785
adding bash script for quick check
LasCC Jan 15, 2023
7ddb94f
fix bad characters
LasCC Jan 15, 2023
2218fd2
remove sticky header
LasCC Jan 15, 2023
d13e66d
rewrite ttyspawnshell
LasCC Jan 15, 2023
f658077
fix bad characters
LasCC Jan 15, 2023
3ef4786
add bundle*.zip
LasCC Jan 15, 2023
6d7f4a3
target_file_name type
LasCC Jan 15, 2023
5390e3a
fix conflicts
LasCC Jan 15, 2023
9e46ec9
fix defaultValue for the select theme switcher
LasCC Jan 15, 2023
712a9b0
new page on hat click
rb-x Jan 21, 2023
ce84f2f
quickfix useEffet page + localstorage persistence done
rb-x Jan 21, 2023
a41b97f
merging to dev before mermaid
rb-x Jan 21, 2023
ab5c05c
ts fix types
rb-x Jan 21, 2023
a71c62a
fix uri-encode
rb-x Jan 21, 2023
70008c3
adding placeholder
rb-x Jan 21, 2023
2c5c4e3
notepad height to 520px
rb-x Jan 21, 2023
a36619e
remove unused import
LasCC Jan 28, 2023
66db383
upgrade packages
LasCC Mar 11, 2023
7f8a293
update readme, new badges and preview images
LasCC Mar 11, 2023
48a85c9
fix select options
LasCC Mar 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more robust function
  • Loading branch information
LasCC committed Jan 8, 2023
commit 3301179d9d0410a1fa300ccd4bd46c2a1d955912
19 changes: 14 additions & 5 deletions src/components/encoding/DataEncoding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,24 @@ const IconFont = createFromIconfontCN( {
} );

function toHex ( str: string ) {
var result = '';
for ( var i = 0; i < str.length; i++ ) {
result += str.charCodeAt( i ).toString( 16 ).toUpperCase();
var result: string = '';
for ( var i: number = 0; i < str.length; i++ ) {
var hex: string = str.charCodeAt( i ).toString( 16 ).toUpperCase();
if ( hex.length === 1 ) {
hex = '0' + hex;
}
result += hex;
}
return result;
}
function hex2a ( hex: string ) {
var str = '';
for ( var i = 0; i < hex.length; i += 2 ) str += String.fromCharCode( parseInt( hex.substr( i, 2 ), 16 ) );
var str: string = '';
for ( var i: number = 0; i < hex.length; i += 2 ) {
var code: number = parseInt( hex.substr( i, 2 ), 16 );
if ( !isNaN( code ) ) {
str += String.fromCharCode( code );
}
}
return str;
}

Expand Down