REPOSITORY / ScuroNeko/mtg

Commits

COMMITS REPOSITORY
Commit Graph
100 Commits
Author SHA1 Message Date
9seconds b3c8c4a47d Upgrade to golang 1.17 2021-08-30 11:53:31 +03:00
9seconds ca5800cf60 Simplify tcp relay time randomization 2021-08-30 10:47:36 +03:00
9seconds e8c70603f7 Upgrade golangci-lint for 1.42 2021-08-27 18:05:51 +03:00
9seconds 456ed5b051 Change algorithm of TCP relaying 2021-08-27 17:22:36 +03:00
9seconds 4b7be8c565 Merge remote-tracking branch 'origin/stable' 2021-07-31 21:05:56 +03:00
9seconds 8758208de6 Merge remote-tracking branch 'origin/master' into stable 2021-07-31 20:51:36 +03:00
9seconds 6cd91600b5 Update dependencies 2021-07-31 11:44:58 +03:00
9seconds eaa757b6d0 Update code to the latest golangci-lint 2021-07-31 11:35:05 +03:00
9seconds dc99dd165e Update golangci-lint to 1.41.1 2021-07-31 11:29:30 +03:00
9seconds dcbbb49607 Update README 2021-07-30 16:36:12 +03:00
9seconds 1050ca0b97 Fix lint issues 2021-07-30 16:34:00 +03:00
9seconds c85c88efd6 Add simple-run command 2021-07-30 16:15:36 +03:00
9seconds c53364d952 Add test for making QR code url 2021-07-30 15:18:26 +03:00
9seconds ed91290e47 Add test for reading config 2021-07-30 15:07:35 +03:00
9seconds 3fd5e9eb19 Rework cli 2021-07-30 15:00:48 +03:00
9seconds 87ed1d1aa7 Move config2 into config 2021-07-29 16:21:22 +03:00
9seconds ec4f0656fb Add updated version of config 2021-07-28 18:16:01 +03:00
9seconds 0c5d487fae Merge remote-tracking branch 'origin/master' into stable 2021-05-17 16:08:19 +03:00
9seconds e1864377c2 Update golangci-lint to 1.40.1 2021-05-17 15:26:16 +03:00
9seconds 4c8925ab65 Update depdendencies 2021-05-17 12:13:17 +03:00
9seconds 604b1d2597 Add support of goreleaser 2021-05-07 16:23:31 +03:00
9seconds 16f9ec690b Fix race condition in closing a relay
This commit fixes a situration when relay can be reset before all
waiting goroutines are finished. For example, we terminate processing
based on some event: socket error etc. So, error happens and context is
cancelled. After that a main relay goroutine starts to wait. Meanwhile a
second goroutine reaches deferred function and set wg to done. It means
that main goroutine can continue.

In this case this is really possible that we can start resetting before
transmit goroutine really exits.

A correct solution is to always do wg.Done() as a first deferred thing
on entering to a function. In that case we do not need reordering and so
on.
2021-05-06 22:08:39 +03:00
9seconds fec60083a3 Merge remote-tracking branch 'origin/master' into stable 2021-05-05 11:57:47 +03:00
9seconds 0882d45d6a Update dependencies 2021-05-05 11:47:57 +03:00
9seconds 86c6541e0d Small typo 2021-05-05 11:47:12 +03:00
9seconds 700f71bb31 Add trimpath for better build reproducibility 2021-05-05 11:23:02 +03:00
9seconds fe3b0f3ca5 Add a real integration test 2021-04-12 10:29:19 +03:00
9seconds 115510985a Add option to use telegram test dcs 2021-04-09 16:45:37 +03:00
9seconds 2b5b325722 Add doc for cli package 2021-04-09 14:51:46 +03:00
9seconds c536cbecd5 Fix a link to go reference 2021-04-09 14:44:57 +03:00
9seconds 5e9d0649a2 Update dependencies 2021-04-09 14:35:50 +03:00
9seconds 585ebfeb50 Update golanci-lint 2021-04-09 14:35:04 +03:00
9seconds 4f048a3b82 Update README 2021-04-09 13:30:04 +03:00
9seconds 43f5d2131e Add test for client hello validation 2021-04-08 15:26:49 +03:00
9seconds e2073f0585 Remove timeattack module 2021-04-08 14:58:14 +03:00
9seconds 0652f322fa Add docstrings to a logger 2021-04-08 14:39:01 +03:00
9seconds d3aa0f2de5 Add mtglib-level documentation 2021-04-08 11:54:49 +03:00
9seconds 40c6cf294a Add documentation for the objects of mtglib 2021-04-08 11:47:44 +03:00
9seconds 4c38ea2b11 Refactor some configuration to proxy_opts 2021-04-08 11:00:54 +03:00
9seconds e6d444546f Add documentation for a secret 2021-04-07 18:02:16 +03:00
9seconds 611583ba88 Add doc strings to mtglib events 2021-04-07 15:22:58 +03:00
9seconds 463af648ce Rework events 2021-04-07 14:40:54 +03:00
9seconds b748603096 Add docs for stats 2021-04-06 12:00:14 +03:00
9seconds 54a7c6a2a5 Small subtle optimizations of faketls 2021-04-06 11:09:37 +03:00
9seconds a3bae795c4 Add documentation for timeattack 2021-04-06 11:03:51 +03:00
9seconds 372c703ad6 Add documentation for network 2021-04-05 18:46:15 +03:00
9seconds 0dd890a09d Add documentation for logger 2021-04-05 16:55:26 +03:00
9seconds 0274b3436a Add documentation for ipblocklist 2021-04-05 16:09:21 +03:00
9seconds 04b88cc864 Add documentation for event stream 2021-04-05 15:12:46 +03:00
9seconds b3112c5c67 Move documentation to init.go 2021-04-05 11:39:09 +03:00
9seconds 3661fe108d Add documentation for antireplay package 2021-04-05 11:35:46 +03:00
9seconds 5d5b77d73b Tune defaults 2021-04-02 21:58:22 +03:00
9seconds 7bffdcdf4a Move config to internal 2021-04-02 21:41:02 +03:00
9seconds ea7033d569 Move cli to internal 2021-04-02 21:36:15 +03:00
9seconds 24fdec6694 Move testlib to internal 2021-04-02 21:32:06 +03:00
9seconds 2fe04c7c9b Move utils to internal 2021-04-02 21:27:34 +03:00
9seconds 7b5cb8e14b Small updates for docker file 2021-04-02 17:41:33 +03:00
9seconds 8566cede74 Update build flags in Makefile 2021-04-02 17:37:24 +03:00
9seconds 2dc30c5837 Simplify cli 2021-04-02 17:12:24 +03:00
9seconds 2cdff017e2 Add base tests for proxy 2021-04-02 17:08:15 +03:00
9seconds 766800700a Add test for connrewind 2021-04-02 14:27:02 +03:00
9seconds 7e7823118e Add test conntraffic 2021-04-02 12:40:22 +03:00
9seconds 784a5818c8 Cover last case in secret 2021-04-02 11:49:07 +03:00
9seconds 75b95995a9 Add tests for stream context 2021-04-02 11:39:18 +03:00
9seconds 5941f0674a Enforce code coverage of secret 2021-04-02 11:03:35 +03:00
9seconds 155a97c25d Add test for network 2021-04-02 10:34:30 +03:00
9seconds 1fd0ebea9b Add unmarshal nil for type url 2021-04-01 21:33:14 +03:00
9seconds 988f61718c Add unmarshal nil for typestatsdtagsformat 2021-04-01 21:29:48 +03:00
9seconds 3d9a63a1f0 Add unmarshal nil test for prefer ip 2021-04-01 21:20:35 +03:00
9seconds 6c92ec314d Test unmarshal nil for port 2021-04-01 21:14:51 +03:00
9seconds 132a01c27e Correct float test for error rate 2021-04-01 17:28:45 +03:00
9seconds b91f28d7d9 Add test for nil for metric prefix 2021-04-01 17:25:49 +03:00
9seconds 339840c14a Add test for broken uri 2021-04-01 17:21:38 +03:00
9seconds a368975959 Add missed case for ip 2021-04-01 17:19:41 +03:00
9seconds 102e7610be Add missed case for error rate test 2021-04-01 16:58:34 +03:00
9seconds e78c4d3bde Test unmarshal nil for type duration 2021-04-01 16:56:07 +03:00
9seconds 1925efc2ec Test unmarshal nil for type bytes 2021-04-01 16:54:00 +03:00
9seconds 9562a86038 Update test coverage for typeblocklisturi 2021-04-01 16:51:38 +03:00
9seconds 21d4f3d101 Add string test for config 2021-04-01 16:51:24 +03:00
9seconds 38ff62fddc Add tests for faketls conn 2021-04-01 16:08:59 +03:00
9seconds 26070d5b3e More correct calculation of dc for obfuscated2 frame 2021-04-01 14:19:52 +03:00
9seconds 03d98ee256 Add relay test for timeout 2021-04-01 11:29:01 +03:00
9seconds dc28677086 Fix lint 2021-04-01 11:20:24 +03:00
9seconds 54f4b397b6 Add tests for relay conn 2021-04-01 11:17:45 +03:00
9seconds 96bcb6cd8e Add tests for welcome packet 2021-04-01 11:03:42 +03:00
9seconds 491b674e70 Add tests for client hello 2021-03-31 12:24:04 +03:00
9seconds fdbee86d5e Ignore coverge.txt 2021-03-30 18:14:28 +03:00
9seconds 5b0d54e74d Add prefix for codecov 2021-03-30 18:10:02 +03:00
9seconds 64754d1039 Add tests for faketls record 2021-03-30 17:47:20 +03:00
9seconds 23c42def4f Add test for faketls type and version 2021-03-30 16:45:07 +03:00
9seconds 87a720dd58 Do not use ristretto
Memory usage is too big
2021-03-30 16:34:16 +03:00
9seconds 10b78322a3 Implement caching dns resolver 2021-03-30 14:14:37 +03:00
9seconds 841a4d2227 Get rid of unrequired buffering for tls records 2021-03-29 18:56:08 +03:00
9seconds 3cacd74e12 Correctly reset relay state 2021-03-29 14:36:02 +03:00
9seconds 71d4c6c42f Set worker pool to non-blocking mode 2021-03-29 12:12:23 +03:00
9seconds 75b05b9b14 Add public method DomainFrontingAddress 2021-03-29 12:09:23 +03:00
9seconds daa8b9c798 Add EventReplayAttack 2021-03-29 12:07:18 +03:00
9seconds bef14bd009 Add support of EventDomainFronting event 2021-03-29 11:56:05 +03:00
9seconds 36d695118e Rename metrics 2021-03-29 11:03:54 +03:00
9seconds 4c3f42e264 Simplify relay 2021-03-29 10:37:09 +03:00