Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Template:Programming"

From NetSec
Jump to: navigation, search
(Replaced content with "<center> <div style="width:40%;">{{PAGENAME}} is part of a series on programming.<br />")
 
Line 1: Line 1:
 
<center>
 
<center>
<html>
+
<div style="width:40%;">{{PAGENAME}} is part of a series on [[programming]].<br />
<script type="text/javascript">
+
function prog_toggle() {
+
  $('#prog_display_text').html($('#prog_hidden_display').html());
+
  $('#prog_hidetext').html($('#prog_hide_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_vape();');
+
}
+
function prog_vape() {
+
  $('#prog_display_text').html('');
+
  $('#prog_hidetext').html($('#prog_show_msg').html());
+
  $('#prog_hidetext').attr('onClick','prog_toggle();');
+
}
+
</script></html>
+
<div style="width:40%; border: 1px solid #000;">{{PAGENAME}} is part of a series on [[programming]].<br />
+
<html><a id='prog_hidetext' onclick="prog_toggle();"><b>[ Decompile ]</b></a></html><br /><div id='prog_display_text'></div>
+
</div>
+
 
+
<div id='prog_hidden_display' style='display:none; height:1px; width:1px;'>
+
'''[[Compiled languages]]'''<br />
+
[[Assembly Basics|Assembly]] &bull; [[C]] &bull; [[CPP|C++]]
+
 
+
'''[[Interpreted languages]]'''<br />
+
[[Perl]] &bull; [[Python]] &bull; [[Ruby]] &bull; [[PHP]] &bull; [[LUA]] &bull; [[TCL]] &bull; [[SQL]] &bull; [[JavaScript]] &bull; [[CSS]] &bull; [[HTML]]
+
 
+
'''[[Assembly]] & [[shellcode]]'''<br />
+
[[Linux assembly]] &bull; [[Out of Order Code Execution]] &bull; [[null-free shellcode]] &bull; [[Ascii shellcode|32-bit ascii shellcode]] &bull; [[alphanumeric shellcode|64-bit alphanumeric shellcode]] &bull; [[Return Oriented Programming (ROP)]]
+
 
+
'''Related Articles'''<br />
+
[[Polymorphic]] &bull; [[AJAX]] &bull; [[jQuery]] &bull; [[Bash book]] &bull; [[unsafe string replacement]] &bull; [[SQL orientation]]<br />
+
</div>
+
<div id='prog_hide_msg' style='visibility:hidden; height:1px; width:1px;'><b>[ Compile ]</b></div>
+
<div id='prog_show_msg' style='visibility:hidden; height:1px; width:1px;'><b>[ Decompile ]</b></div>
+
</center>
+
<includeonly>[[Category:Programming|{{PAGENAME}}]]</includeonly><noinclude>
+
 
+
[[category:Templates]]</noinclude>
+

Latest revision as of 15:51, 18 June 2016

Programming is part of a series on programming.