Home > Net >  Have no great god help me to look at the program a little cow.
Have no great god help me to look at the program a little cow.

Time:10-08


Download the free library system, in the local can access localhost, 127.0.0.1 is no problem,, as long as the binding IP access will be after the jump to their website, after should be the code inside a DLL file in judgment to jump, but I don't know how to change, I am a rookie, there are no advice on how to modify the expert, have posted below to download address:


http://www.onlinedown.net/soft/1148705.htm in hua jun download the free library system

CodePudding user response:

With.net Reflector decompiled corresponding DLL library, save the decompiled code to form a new class library project, and then get rid of the jump logic (the compiled code must have a lot of error, combined with the context can modify, calm down and slowly change).

CodePudding user response:

Or decompiling once, and then change, or go to the open source web site to download

CodePudding user response:

reference 1st floor chuzhaowei response:
..net Reflector decompiled corresponding DLL library, save the decompiled code to form a new class library project, and then get rid of the jump logic (the compiled code must have a lot of error, combined with the context can modify, calm down and slowly change),


I am a rookie can help modify under?

CodePudding user response:

Should be a code, can you see how to modify the

Using System;
Using System. The Web;

The namespace URLRewriter
{
//Token: 0 x02000002 RID: 2
Internal partial class RewriterUtils
{
//Token: 0 x06000003 RID: 3
Internal static string ResolveUrl (string appPath, string url)
{
The string result;
If (url. The Length==0 | | url [0]! )
='~'{
Result=url;
}
Else if (url. The Length==1)
{
Result=appPath;
}
Else if (url [1]=='/' | | url [1]=='\ \')
{
If (appPath. Length & gt; 1)
{
Result=appPath + "/" + url. The Substring (2);
}
The else
{
Result="/" + url. The Substring (2);
}
}
Else if (appPath Length & gt; 1)
{
Result=appPath + "/" + url. The Substring (1);
}
The else
{
Result=appPath + url. The Substring (1);
}
return result;
}
}
}

CodePudding user response:

Is encapsulated in the DLL file

CodePudding user response:

Which use so difficult, only to 127.0.0.1 access right? The bread a layer of nginx reverse proxy perfect solution,

CodePudding user response:

F X
reference - I - n reply:
which use so difficult, only to 127.0.0.1 access right? The bread a layer of nginx perfectly solve the reverse proxy,


Your answer reminds me of a joke,

Recently, the gold three fat at the conference said north Korea to log in the sun, the whole uproar: "the sun so hot, how?" Gold three fat saw all doubts, said "we go to dark!" The night was astonished by the gold three fat wit, instant applause of thunder, prolongs!

CodePudding user response:

CodePudding user response:

refer to the eighth floor q363186 response:
Quote: refer to the sixth floor X - I - n reply:

Which use so difficult, only to 127.0.0.1 access right? The bread a layer of nginx perfectly solve the reverse proxy,


Your answer reminds me of a joke,

Recently, the gold three fat at the conference said north Korea to log in the sun, the whole uproar: "the sun so hot, how?" Gold three fat saw all doubts, said "we go to dark!" The night was astonished by the gold three fat wit, instant applause of thunder, prolongs!

Ha ha, if I were you, I will go to learn what is a reverse proxy,

CodePudding user response:

Remove the find they turned, reverse engineering,

CodePudding user response:

More direct method, directly in the decompiled code specified in the TCP/IP

CodePudding user response:

Who can help to modify,
  • Related