sampledocpayload624286 0.0.7 → 0.0.9

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +0 -1
  3. data/payload.html +16 -1
  4. metadata +1 -2
  5. data/exploit.rb +0 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1aa8e9d5debd64e573d7fd28909920bea64b06f85d926c9bcb1183b99d8f55c3
4
- data.tar.gz: db35dc7e77485e596d07dfd2ece747d095a772a8707084c4fc79d58e1624d1d8
3
+ metadata.gz: de3a79dada4f905f67f7508ff14e38527e8e72259ccbc859130028bdfda7721a
4
+ data.tar.gz: 7d3fa0f95ea3b1245e46d5a5bb44b7c05605e3ee15974daeb7739728af354a87
5
5
  SHA512:
6
- metadata.gz: e4067bb9caceef41676ae0d734e53c44f743fc8d047f4b148d2ec53dc5074a2864e78d99cf71fc89da3a5e122e1b0e154defb126662b4c851310bc43272c749c
7
- data.tar.gz: 35031767a65109723c9e6a7aa9e20ff16bf0d5b6ac0f67fb7e38da9434f19ef47268cb9d9be254e2c6a669e2f6759e63d98c44cf9a99de07f451f625dfca3438
6
+ metadata.gz: 8610629b18b2efd4f31e50ad162d61eabdc7e99582b2e1b9d994c5f0266585607830597c0288f08e8494ef13c6456a3f2f3be7106a7d089a2fa0fb5eb793f51f
7
+ data.tar.gz: e949e6ef8740a66a377367f53aa1906bce2a45c23020790d2be740d619b8b7a5344254227edf23bc04d17da46859f00f8fc98398eb769554116b7f7c83b7ba39
data/.yardopts CHANGED
@@ -1,4 +1,3 @@
1
1
  --main README.md
2
2
  --markup markdown
3
- -e exploit.rb
4
3
  --asset payload.html:payload.html
data/payload.html CHANGED
@@ -1 +1,16 @@
1
- <h1> ORIG V7 </h1>
1
+ <!doctype html><meta charset="UTF-8"><title>PB Fetch test v9</title>
2
+ <style>body{font-size:16px}pre{white-space:pre-wrap;word-break:break-all}</style>
3
+ <h2>Remote fetch test v9</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.7
4
+ version: 0.0.9
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
@@ -1,2 +0,0 @@
1
- # harmless no-op test load
2
- ENV['TEST']='1'