Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libjs-excanvas /
examples /
testcases /
[ HOME SHELL ]
Name
Size
Permission
Action
arc.html
883
B
-rw-r--r--
clearpath.html
942
B
-rw-r--r--
drawimage.html
574
B
-rw-r--r--
gradient.html
810
B
-rw-r--r--
gradient2.html
874
B
-rw-r--r--
linewidth.html
887
B
-rw-r--r--
overflow.html
687
B
-rw-r--r--
quadraticcurve.html
1.03
KB
-rw-r--r--
resizing.html
1.52
KB
-rw-r--r--
saverestorepath.html
858
B
-rw-r--r--
stroke-scale-rotate.html
1.3
KB
-rw-r--r--
stroke-should-not-close-path.h...
629
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gradient.html
<!DOCTYPE html> <html> <head> <title>Gradient Test</title> <style> body { text-align: center } </style> <!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]--> <script> window.onload = function() { var ctx = document.getElementById('c').getContext('2d'); var g = ctx.createLinearGradient(0, 0, 300, 0); g.addColorStop(0, '#000'); g.addColorStop(1 / 7, '#00f'); g.addColorStop(2 / 7, '#0f0'); g.addColorStop(3 / 7, '#0ff'); g.addColorStop(4 / 7, '#f00'); g.addColorStop(5 / 7, '#f0f'); g.addColorStop(6 / 7, '#ff0'); g.addColorStop(1, '#fff'); ctx.fillStyle = g; ctx.fillRect(0, 0, 300, 200); }; </script> </head> <body> <canvas id=c width=300 height=200></canvas> <p>This tests gradients</p> </body> </html>
Close