Skip to content

Commit

Permalink
fiddling with jenkins, changing redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarsoo committed Feb 1, 2024
1 parent d2c7a38 commit 1f7476a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: cargo doc --no-deps --document-private-items

- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=dnstp/index.html">' > target/doc/index.html
run: echo '<meta http-equiv="refresh" content="0;url=dnstplib/index.html">' > target/doc/index.html

- name: Remove lock file
run: rm target/doc/.lock
Expand Down
8 changes: 7 additions & 1 deletion .jenkins/jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ pipeline {
stages {
stage('Build') {
steps {
sh '~/.cargo/bin/cargo build'
sh 'source ~/.cargo/env && cargo build'
}
}

stage('Test') {
steps {
sh 'source ~/.cargo/env && cargo test'
}
}
}
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ Transmitting files over dns piece by piece. Should be a pretty subtle way of sen

I remember I was listening to, I think, [Security This Week with Carl Franklin](https://securitythisweek.com/). One of the hosts mentioned doing data exfiltration from a tight network by breaking the file down and sending it over DNS. I wanted to see how this could work. [Read More](https://www.securityweek.com/multigrain-pos-malware-exfiltrates-card-data-over-dns/).

I also wanted to play with a big rust project for standard targets with threading. Although I had a lot of fun with my browser-based checkers game, [Draught](https://draught.sarsoo.xyz), working against WASM has some restrictions.
I also wanted to play with a big rust project for standard targets with threading. Although I had a lot of fun with my browser-based checkers game, [Draught](https://draught.sarsoo.xyz), working against WASM has some restrictions.

[Read the Docs](https://github.com/Sarsoo/dnstp/settings/pages)

0 comments on commit 1f7476a

Please sign in to comment.