Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for smb1 (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

    import org.codelibs.fess.crawler.helper.MimeTypeHelper;
    import org.codelibs.jcifs.smb1.ACE;
    import org.codelibs.jcifs.smb1.Config;
    import org.codelibs.jcifs.smb1.NtlmPasswordAuthentication;
    import org.codelibs.jcifs.smb1.SID;
    import org.codelibs.jcifs.smb1.SmbException;
    import org.codelibs.jcifs.smb1.SmbFile;
    import org.codelibs.jcifs.smb1.SmbFileInputStream;
    import org.codelibs.jcifs.smb1.util.LogStream;
    
    import jakarta.annotation.Resource;
    
    /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                } else if (responseData.getUrl().startsWith("smb1:")) {
                    final org.codelibs.jcifs.smb1.SID[] allowedSids = (org.codelibs.jcifs.smb1.SID[]) metaDataMap
                            .get(org.codelibs.fess.crawler.client.smb1.SmbClient.SMB_ALLOWED_SID_ENTRIES);
                    if (allowedSids != null) {
                        for (final org.codelibs.jcifs.smb1.SID sid : allowedSids) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

         *
         * @param url the URL to check
         * @return true if the URL uses a file path protocol (smb, smb1, file, ftp, s3, gcs)
         */
        public boolean isFilePathProtocol(final String url) {
            return url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:")
                    || url.startsWith("s3:") || url.startsWith("gcs:");
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

            Integer port = sambaServer.getMappedPort(445);
            baseUrl = "smb1://" + host + ":" + port + "/users/";
            publicUrl = "smb1://" + host + ":" + port + "/public/";
            emptyUrl = "smb1://" + host + ":" + port + "/empty/";
            deepUrl = "smb1://" + host + ":" + port + "/deep/";
            specialUrl = "smb1://" + host + ":" + port + "/special/";
            logger.info("Base URL: {}", baseUrl);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 30K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

                    smbAuth.setPassword(fileAuth.getPassword());
                    smbAuthList.add(smbAuth);
    
                    final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth =
                            new org.codelibs.fess.crawler.client.smb1.SmbAuthentication();
                    smb1Auth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                    smb1Auth.setServer(fileAuth.getHostname());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/client.xml

    	</component>
    
    	<component name="smbClient" class="org.codelibs.fess.crawler.client.smb.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    		<!-- ntlmPasswordAuthentication -->
    	</component>
    
    	<component name="smb1Client" class="org.codelibs.fess.crawler.client.smb1.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    		<!-- ntlmPasswordAuthentication -->
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                        smbAuthList.add(smbAuth);
    
                        final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth =
                                new org.codelibs.fess.crawler.client.smb1.SmbAuthentication();
                        smb1Auth.setDomain(domain == null ? StringUtil.EMPTY : domain);
                        smb1Auth.setServer(hostname);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SambaHelper.java

            return null;
        }
    
        /**
         * Gets the account ID from a SID.
         * @param sid The SID.
         * @return The account ID.
         */
        public String getAccountId(final org.codelibs.jcifs.smb1.SID sid) {
            final int type = sid.getType();
            if (logger.isDebugEnabled()) {
                try {
                    logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. CLAUDE.md

    ### Protocols
    
    - **HTTP/HTTPS**: Full crawling, cookies, auth, robots.txt
    - **File**: Local/network file systems
    - **FTP**: With authentication
    - **SMB/CIFS**: Windows shares (SMB1/SMB2+)
    - **Storage**: MinIO/S3-compatible
    
    ### Content Formats
    
    Office (Word, Excel, PowerPoint), PDF, Archives (ZIP, TAR, GZ), HTML, XML, JSON, Media (audio/video metadata), Images (EXIF/IPTC/XMP)
    
    ---
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    -XX:MaxGCPauseMillis=60000\n\
    -XX:G1NewSizePercent=5\n\
    -XX:G1MaxNewSizePercent=5\n\
    -Djcifs.smb.client.responseTimeout=30000\n\
    -Djcifs.smb.client.soTimeout=35000\n\
    -Djcifs.smb.client.connTimeout=60000\n\
    -Djcifs.smb.client.sessionTimeout=60000\n\
    -Djcifs.smb1.smb.client.connTimeout=60000\n\
    -Djcifs.smb1.smb.client.soTimeout=35000\n\
    -Djcifs.smb1.smb.client.responseTimeout=30000\n\
    -Dio.netty.noUnsafe=true\n\
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
Back to top