sampledocpayload624286 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +0 -1
- data/payload.html +16 -1
- metadata +1 -2
- data/exploit.rb +0 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30e4ced3e624c4d08b4b73ef28147a6386f17e77a52d565138fcec5e16f345b8
|
|
4
|
+
data.tar.gz: 84fde4831718baa9b040571b66de0fc6bb5211d1a0805bf79fd0514a96488445
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7fc0ef1b5655094d913412e2d15fc2715ce4690390a4d7778bd8a61de2bc9a95881987b763e602901b25b6e8dd6209117264f2c6fb0bd97fa9b413952e8886c
|
|
7
|
+
data.tar.gz: 12a2e63a2c570fafcd212c79f29665849483845d020a15e0c81da501c67a4e424fe6fd2ea54ec536bd8e1191b189d14f5136b93b3ca41a542a3e43480ff4777a
|
data/.yardopts
CHANGED
data/payload.html
CHANGED
|
@@ -1 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
<!doctype html><meta charset="UTF-8"><title>PB Fetch test v8</title>
|
|
2
|
+
<style>body{font-size:16px}pre{white-space:pre-wrap;word-break:break-all}</style>
|
|
3
|
+
<h2>Remote fetch test v8</h2><pre id="o">starting...
|
|
4
|
+
</pre>
|
|
5
|
+
<script>
|
|
6
|
+
(async function(){
|
|
7
|
+
const out=document.getElementById('o');
|
|
8
|
+
const url='https://wabi-uk-south-b-primary-api.analysis.windows.net/public/reports/querydata?synchronous=true';
|
|
9
|
+
try {
|
|
10
|
+
out.textContent='sending...';
|
|
11
|
+
let r=await fetch(url,{method:'POST', headers:{'Content-Type':'application/json','X-PowerBI-ResourceKey':'dbf4b088-1821-46ee-bf5e-e03d0e2d5826'}, body: '{}'});
|
|
12
|
+
out.textContent='response status='+r.status+' '+r.statusText+'\nheaders:';r.headers.forEach((v,k)=>out.textContent+='\n'+k+':'+v);
|
|
13
|
+
let txt=await r.text(); out.textContent+='\n\nBODY:\n'+txt;
|
|
14
|
+
} catch(e) {out.textContent='ERROR '+ e +' stack '+e.stack;}
|
|
15
|
+
})();
|
|
16
|
+
</script>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sampledocpayload624286
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- x
|
|
@@ -19,7 +19,6 @@ extra_rdoc_files:
|
|
|
19
19
|
files:
|
|
20
20
|
- ".yardopts"
|
|
21
21
|
- README.md
|
|
22
|
-
- exploit.rb
|
|
23
22
|
- lib/sample.rb
|
|
24
23
|
- payload.html
|
|
25
24
|
homepage:
|
data/exploit.rb
DELETED