Skip to content

Commit

Permalink
Deploying to gh-pages from @ 3af7fb3 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
patacca committed Jun 12, 2024
1 parent dae2cad commit 134972a
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 1 deletion.
32 changes: 32 additions & 0 deletions _sources/tutorials/binexport_quickstart.ipynb.txt
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,38 @@
"source": [
"This can gives us an idea of which functions to look at when searching for a vulnerability."
]
},
{
"cell_type": "raw",
"metadata": {},
"source": [
"<script>\n",
"var coll = document.getElementsByClassName(\"collapsible\");\n",
"var i;\n",
"\n",
"for (i = 0; i < coll.length; i++) {\n",
"\n",
" var tmp = coll[i].nextElementSibling;\n",
" tmp.style.display = \"none\";\n",
" tmp.nextElementSibling.style.display = \"none\";\n",
"\n",
" coll[i].addEventListener(\"click\", function() {\n",
" this.classList.toggle(\"active\");\n",
" var content = this.nextElementSibling;\n",
" var content2 = content.nextElementSibling;\n",
" if (content.style.display === \"none\") {\n",
" content.style.display = \"\";\n",
" content2.style.display = \"\";\n",
" this.innerHTML = \"Hide Solution\";\n",
" } else {\n",
" content.style.display = \"none\";\n",
" content2.style.display = \"none\";\n",
" this.innerHTML = \"Show Solution\";\n",
" }\n",
" });\n",
"}\n",
"</script>"
]
}
],
"metadata": {
Expand Down
27 changes: 26 additions & 1 deletion tutorials/binexport_quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,32 @@ <h2>III. Find interesting paths in the CG<a class="headerlink" href="#III.-Find-
</pre></div></div>
</div>
<p>This can gives us an idea of which functions to look at when searching for a vulnerability.</p>
</section>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;

for (i = 0; i < coll.length; i++) {

var tmp = coll[i].nextElementSibling;
tmp.style.display = "none";
tmp.nextElementSibling.style.display = "none";

coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
var content2 = content.nextElementSibling;
if (content.style.display === "none") {
content.style.display = "";
content2.style.display = "";
this.innerHTML = "Hide Solution";
} else {
content.style.display = "none";
content2.style.display = "none";
this.innerHTML = "Show Solution";
}
});
}
</script></section>
</section>

<div class="clearer"></div>
Expand Down
32 changes: 32 additions & 0 deletions tutorials/binexport_quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,38 @@
"source": [
"This can gives us an idea of which functions to look at when searching for a vulnerability."
]
},
{
"cell_type": "raw",
"metadata": {},
"source": [
"<script>\n",
"var coll = document.getElementsByClassName(\"collapsible\");\n",
"var i;\n",
"\n",
"for (i = 0; i < coll.length; i++) {\n",
"\n",
" var tmp = coll[i].nextElementSibling;\n",
" tmp.style.display = \"none\";\n",
" tmp.nextElementSibling.style.display = \"none\";\n",
"\n",
" coll[i].addEventListener(\"click\", function() {\n",
" this.classList.toggle(\"active\");\n",
" var content = this.nextElementSibling;\n",
" var content2 = content.nextElementSibling;\n",
" if (content.style.display === \"none\") {\n",
" content.style.display = \"\";\n",
" content2.style.display = \"\";\n",
" this.innerHTML = \"Hide Solution\";\n",
" } else {\n",
" content.style.display = \"none\";\n",
" content2.style.display = \"none\";\n",
" this.innerHTML = \"Show Solution\";\n",
" }\n",
" });\n",
"}\n",
"</script>"
]
}
],
"metadata": {
Expand Down

0 comments on commit 134972a

Please sign in to comment.