Skip to content

Commit e280c0b

Browse files
committed
We do a little update
1 parent eaca1a8 commit e280c0b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ You'll want to have at least Node 18 or newer. Don't forget to install the depen
1313
3. **Copy** (don't cut) the license file into the same folder where the exe is located.
1414
4. Run `ssl_gen.js` and install the generated certificated (`certs/md5c.korepi.com.crt`) as a trusted root certificate.
1515
5. Start `server.js`.
16-
6. Set your DNS resolver to the following address:
16+
6. Edit your hosts file (`C:\Windows\system32\drivers\etc\hosts`) and add the following lines:
1717
```
18-
127.0.0.1
18+
127.0.0.1 ghp.535888.xyz
19+
127.0.0.1 md5c.535888.xyz
1920
```
2021
7. Use any DLL injector that you prefer and have it auto inject `lol.dll` (available from the [releases](https://github.com/fadillzzz/korepi-tools/releases) page or compile yourself) into Korepi's launcher.
2122
8. Launch Korepi.

server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ function dnsRequestHandler(request, send, rinfo) {
155155
const [question] = request.questions;
156156
let { name } = question;
157157

158-
if (name.includes('md5c') || name.match(/dns[\d]*\.quad9\.net/) || name.includes('535888.xyz')) {
158+
if (name.includes('md5c') || name.includes('535888.xyz')) {
159159
// Can't be bothered to figure this one out right now
160160
if (name.includes('.localdomain')) {
161161
name = name.replace('.localdomain', '');

0 commit comments

Comments
 (0)