diff --git a/nbase/nbase_rnd.c b/nbase/nbase_rnd.c index 1fc549902..fe6561716 100644 --- a/nbase/nbase_rnd.c +++ b/nbase/nbase_rnd.c @@ -117,7 +117,7 @@ static u8 nrand_getbyte(nrand_h *r) { si = r->s[r->i]; r->j = (r->j + si); sj = r->s[r->j]; - r->s[r->i] = sj; /* The start of the the swap */ + r->s[r->i] = sj; /* The start of the swap */ r->s[r->j] = si; /* The other half of the swap */ return (r->s[(si + sj) & 0xff]); } diff --git a/nbase/nbase_winunix.c b/nbase/nbase_winunix.c index d63aab0eb..3445480aa 100644 --- a/nbase/nbase_winunix.c +++ b/nbase/nbase_winunix.c @@ -156,7 +156,7 @@ int win_stdin_start_thread(void) { return 0; /* Make a copy of the stdin handle to be used by win_stdin_thread_func. It - will remain a reference to the the true stdin after we fake stdin to read + will remain a reference to the true stdin after we fake stdin to read from the pipe instead. */ if (DuplicateHandle(GetCurrentProcess(), GetStdHandle(STD_INPUT_HANDLE), GetCurrentProcess(), &thread_stdin_handle, diff --git a/nmap-os-db b/nmap-os-db index 2d6abe6d5..51bc0d499 100644 --- a/nmap-os-db +++ b/nmap-os-db @@ -59945,7 +59945,7 @@ IE(DFI=N%T=3B-45%TG=40%CD=S) # Linux 3.0.3-gentoo #1 SMP Fri Aug 19 22:46:58 EEST 2011 x86_64 Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz GenuineIntel GNU/Linux # Linux 2.6.40.3-0.fc15.x86_64 #1 SMP Tue Aug 16 04:10:59 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux -# "2.6.40.3-0.fc15" stands for Linux 3.0, this is just a naming scheme chosen by the Fedora folks to ensure that the the switch to "Linux 3.0" doesn't break anything. +# "2.6.40.3-0.fc15" stands for Linux 3.0, this is just a naming scheme chosen by the Fedora folks to ensure that the switch to "Linux 3.0" doesn't break anything. # Linux 2.6.35.14-97.fc14.x86_64 #1 SMP Sat Sep 17 00:15:37 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux, Fedora 14 # Linux 3.1.0-7.fc16.i686 #1 SMP Tue Nov 1 21:00:16 UTC 2011 i686 i686 i386 GNU/Linux Fedora 16 # Linux 2.6.35.14-103.fc14.x86_64 #1 SMP Thu Oct 27 15:41:25 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux diff --git a/nmap-service-probes b/nmap-service-probes index bd4f32668..1c0eda8ab 100644 --- a/nmap-service-probes +++ b/nmap-service-probes @@ -15058,7 +15058,7 @@ match sip m|^SIP/2\.0 200 OK\r\n(?:[^\r\n]+\r\n)*?Allow: INVITE, ACK, CANCEL, OP # These probes have a high likelihood of triggering false positives because # any service that echos your command back can match. The docs on the # the protocol make me think a ^ anchor can be added to the response so -# this should cut down on the the false positives. (Brandon) +# this should cut down on the false positives. (Brandon) # # See ntp_white_paper_11.txt for more information on the Nessus protocol # diff --git a/nselib/mssql.lua b/nselib/mssql.lua index e275e5410..4116598cc 100644 --- a/nselib/mssql.lua +++ b/nselib/mssql.lua @@ -20,7 +20,7 @@ -- * QueryPacket: Class used to hold a query and convert it to a string suitable for transmission over a socket. -- * LoginPacket: Class used to hold login specific data which can easily be converted to a string suitable for transmission over a socket. -- * PreLoginPacket: Class used to (partially) implement the TDS PreLogin packet --- * TDSStream: Class that handles communication over the Tabular Data Stream protocol used by SQL serve. It is used to transmit the the Query- and Login-packets to the server. +-- * TDSStream: Class that handles communication over the Tabular Data Stream protocol used by SQL serve. It is used to transmit the Query- and Login-packets to the server. -- * Helper: Class which facilitates the use of the library by through action oriented functions with descriptive names. -- * Util: A "static" class containing mostly character and type conversion functions. -- diff --git a/nselib/pop3.lua b/nselib/pop3.lua index 10d9c40bd..179bd5266 100644 --- a/nselib/pop3.lua +++ b/nselib/pop3.lua @@ -55,7 +55,7 @@ end --- --- Try to login using the the AUTH command using SASL/Plain method. +-- Try to login using the AUTH command using SASL/Plain method. -- @param socket Socket connected to POP3 server. -- @param user User string. -- @param pw Password string. diff --git a/osscan.cc b/osscan.cc index 1e139aef2..3fb5a61ac 100644 --- a/osscan.cc +++ b/osscan.cc @@ -1019,7 +1019,7 @@ static void parse_classline(FingerPrint *FP, const char *thisline, const char *l fatal("Parse error on line %d of fingerprint: %s\n", lineno, thisline); os_class.OS_Family = string_pool_substr_strip(begin, end); - /* And now the the OS generation. */ + /* And now the OS generation. */ begin = end + 1; end = strchr_p(begin, lineend, '|'); if (end == NULL) diff --git a/scripts/http-default-accounts.nse b/scripts/http-default-accounts.nse index 36bd9ea0b..fbf38ec9a 100644 --- a/scripts/http-default-accounts.nse +++ b/scripts/http-default-accounts.nse @@ -319,7 +319,7 @@ end -- @param host table as received by the scripts action method -- @param port table as received by the scripts action method -- @param fingerprint as defined in the fingerprint file --- @param path againt which the the credentials will be tested +-- @param path againt which the credentials will be tested -- @return out table suitable for inclusion in the script structured output -- (or nil if no credentials succeeded) -- @return txtout table suitable for inclusion in the script textual output diff --git a/scripts/omp2-brute.nse b/scripts/omp2-brute.nse index ade592205..fcf5b7a4a 100644 --- a/scripts/omp2-brute.nse +++ b/scripts/omp2-brute.nse @@ -53,7 +53,7 @@ Driver = { return self.session:close() end, - --- Attempts to login the the OpenVAS Manager using a given username/password + --- Attempts to login the OpenVAS Manager using a given username/password -- couple. Store the credentials in the registry on success. -- -- @param username string containing the login username diff --git a/scripts/rmi-dumpregistry.nse b/scripts/rmi-dumpregistry.nse index e7ae03963..d8e4b00e4 100644 --- a/scripts/rmi-dumpregistry.nse +++ b/scripts/rmi-dumpregistry.nse @@ -10,7 +10,7 @@ objects. First it tries to determine the names of all objects bound in the registry, and then it tries to determine information about the -objects, such as the the class names of the superclasses and +objects, such as the class names of the superclasses and interfaces. This may, depending on what the registry is used for, give valuable information about the service. E.g, if the app uses JMX (Java Management eXtensions), you should see an object called "jmxconnector" diff --git a/service_scan.cc b/service_scan.cc index 10dcd2998..8c0f9b20f 100644 --- a/service_scan.cc +++ b/service_scan.cc @@ -117,7 +117,7 @@ public: ~ServiceNFO(); // If a service response to a given probeName, this function adds - // the response the the fingerprint for that service. The + // the response the fingerprint for that service. The // fingerprint can be printed when nothing matches the service. You // can obtain the fingerprint (if any) via getServiceFingerprint(); void addToServiceFingerprint(const char *probeName, const u8 *resp, diff --git a/zenmap/zenmapCore/NmapParser.py b/zenmap/zenmapCore/NmapParser.py index 4279b4092..8d17dcaef 100644 --- a/zenmap/zenmapCore/NmapParser.py +++ b/zenmap/zenmapCore/NmapParser.py @@ -254,7 +254,7 @@ class HostInfo(object): 1) IPv4 comes before IPv6 comes before MAC, and 2) addresses are sorted according to their binary values, not their string representation. - Use this function to the the comparison key when sorting a list of + Use this function to the comparison key when sorting a list of hosts by address.""" l = [] if self.ip: