Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Target (0.27 sec)

  1. src/test/java/jcifs/tests/NtlmTest.java

        public void testParsingType2Target () throws IOException {
            int flags = NtlmFlags.NTLMSSP_REQUEST_TARGET;
            String target = "TARGET";
            byte[] challenge = new byte[] {
                0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8
            };
    
            Type2Message t2 = new Type2Message(this.context, flags, challenge, target);
            Type2Message parsed = new Type2Message(t2.toByteArray());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbConstants.java

        static final int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
        static final int FLAGS_TARGET_MUST_BE_FILE = 0x0001;
        static final int FLAGS_TARGET_MUST_BE_DIRECTORY = 0x0002;
        static final int FLAGS_COPY_TARGET_MODE_ASCII = 0x0004;
        static final int FLAGS_COPY_SOURCE_MODE_ASCII = 0x0008;
        static final int FLAGS_VERIFY_ALL_WRITES = 0x0010;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        /**
         * Returns the authentication target.
         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget() {
            return target;
        }
    
        /**
         * Sets the authentication target.
         *
         * @param target The authentication target.
         */
        public void setTarget(String target) {
            this.target = target;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbTransportPool.java

         * @param tc
         *            context to use
         * @param address
         * @param port
         * @param exclusive
         *            whether to acquire an unshared connection
         * @return a transport connection to the target
         */
        SmbTransport getSmbTransport ( CIFSContext tc, Address address, int port, boolean exclusive );
    
    
        /**
         * Get transport connection
         * 
         * @param tc
         *            context to use
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type2Message.java

        }
    
    
        /**
         * Returns the authentication target.
         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget () {
            return this.target;
        }
    
    
        /**
         * Sets the authentication target.
         *
         * @param target
         *            The authentication target.
         */
        public void setTarget ( String target ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a domain.
         */
        public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a server.
         */
        public static final int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  7. src/test/resources/log4j.properties

    # Root logger option
    log4j.rootLogger=INFO, stderr
    
    # Direct log messages to stdout
    log4j.appender.stderr.ImmediateFlush=true
    log4j.appender.stderr=org.apache.log4j.ConsoleAppender
    log4j.appender.stderr.Target=System.err
    log4j.appender.stderr.layout=org.apache.log4j.PatternLayout
    log4j.appender.stderr.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
    
    
    log4j.logger.jcifs: INFO
    #log4j.logger.jcifs.internal.smb2.create: DEBUG
    Properties
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 806 bytes
    - Viewed (0)
  8. src/main/java/jcifs/ACE.java

     * <p>
     * For example, if user <tt>WNET\alice</tt> tries to open a file
     * with desired access bits <tt>0x00000003</tt> (<tt>FILE_READ_DATA |
     * FILE_WRITE_DATA</tt>) and the target file has the following security
     * descriptor ACEs:
     * 
     * <pre>
     * Allow WNET\alice     0x001200A9  Direct
     * Allow Administrators 0x001F01FF  Inherited
     * Allow SYSTEM         0x001F01FF  Inherited
     * </pre>
     * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/av/AvPair.java

        /**
         * Timestamp type
         */
        public static final int MsvAvTimestamp = 0x7;
    
        /**
         * Single host type
         */
        public static final int MsvAvSingleHost = 0x08;
    
        /**
         * Target name type
         */
        public static final int MsvAvTargetName = 0x09;
    
        /**
         * Channel bindings type
         */
        public static final int MsvAvChannelBindings = 0x0A;
    
        private final int type;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/DfsTest.java

            String dfsSharePath = getDFSTestSharePath();
    
            String target = ( domain && !isStandalone() ) ? getTestDomain() : getTestServer();
    
            String path = link != null ? link : dfsSharePath + relative;
    
            if ( upper ) {
                dfsShare = dfsShare.toUpperCase(Locale.ROOT);
                path = path.toUpperCase(Locale.ROOT);
                target = target.toUpperCase(Locale.ROOT);
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
Back to top