Skip to content

Commit

Permalink
+Fermion-v16
Browse files Browse the repository at this point in the history
  • Loading branch information
FuzzySecurity committed Jul 10, 2021
1 parent de5606a commit 060c962
Show file tree
Hide file tree
Showing 13 changed files with 1,259 additions and 170 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,15 @@
* Added JS trap for ctrl/command-t to refresh the Frida script in the target. It is now practical to collapse side-bar and work on your code.
* Added "GC" on the textarea. It was always a problem that high volume hooks could tank Fermion if the textarea grew too large. Fermion now limits the line count to 5000 and will delete old entries as new ones come in.
* Changed color for the text area. I think eventually a full UI re-design will probably be in order (v2 maybe).
* Added example: malloc, readFile
* Added example: malloc, readFile, graphviz

-= Fermion v1.6 =-

* Pre-built release updated to Frida v15.0.2
* Build updated/tested for Electron v13
* Updated language bindings
* Fermion Bugfix for new Chrome CORS policy
* Disable contextIsolation for window communications
* Bugfix for https://github.com/FuzzySecurity/Fermion/issues/12
* Four new themes: Amy, Oceanic Next, Tomorrow Night Blue, Vibrant Ink
* More minor UI colour changes. I still thinking of a full re-design for v2.
16 changes: 8 additions & 8 deletions Fermion/assets/css/frida.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ a, a:hover, a:focus {
}

a.nav-link:hover {
background: #ff4757;
background: #ee6055;
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
Expand Down Expand Up @@ -206,7 +206,7 @@ a.nav-link:hover {
#sidebar {
min-width: 250px;
max-width: 250px;
background: #ff4757;
background: #ee6055;
color: #fff;
transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
transform-origin: bottom left;
Expand All @@ -219,7 +219,7 @@ a.nav-link:hover {

#sidebar .sidebar-header {
padding: 15px;
background: #ff4757;
background: #ee6055;
}

#sidebar ul.components {
Expand All @@ -237,12 +237,12 @@ a.nav-link:hover {
display: block;
}
#sidebar ul li a:hover {
color: #ff4757;
color: #ee6055;
background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
color: #ff4757;
color: #ee6055;
background: #fff;
}

Expand Down Expand Up @@ -436,9 +436,9 @@ textarea#FridaOut {
height: 100%;
color: #ffffff;
font-family: monospace;
font-size: 0.9em;
font-size: 0.8em;
line-height: 1.7em;
background-color: #422f2f;
background-color: #423636;
}

.btn-level {
Expand Down Expand Up @@ -487,7 +487,7 @@ input[type="checkbox"].slider{
}

input[type="checkbox"].slider:checked{
background: #ff4757;
background: #ee6055;
}

input[type="checkbox"].slider:after{
Expand Down
Binary file modified Fermion/assets/img/version.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 060c962

Please sign in to comment.