connectbot/sshlib

View on GitHub

Showing 412 of 412 total issues

Method generateWorkingKey has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    protected int[] generateWorkingKey(boolean encrypting, byte[] key, int off)
    {
        int[] newKey = new int[32];
        boolean[] pc1m = new boolean[56], pcr = new boolean[56];

Severity: Minor
Found in src/main/java/com/trilead/ssh2/crypto/cipher/DES.java - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method receiveFiles has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    private void receiveFiles(Session sess, String[] files, String target) throws IOException
    {
        byte[] buffer = new byte[8192];

        OutputStream os = new BufferedOutputStream(sess.getStdin(), 512);
Severity: Minor
Found in src/main/java/com/trilead/ssh2/SCPClient.java - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    public String canonicalPath(String path) throws IOException
    {
        int req_id = generateNextRequestID();

        TypesWriter tw = new TypesWriter();
Severity: Major
Found in src/main/java/com/trilead/ssh2/SFTPv3Client.java and 1 other location - About 3 hrs to fix
src/main/java/com/trilead/ssh2/SFTPv3Client.java on lines 482..529

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 234.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    public String readLink(String path) throws IOException
    {
        int req_id = generateNextRequestID();

        TypesWriter tw = new TypesWriter();
Severity: Major
Found in src/main/java/com/trilead/ssh2/SFTPv3Client.java and 1 other location - About 3 hrs to fix
src/main/java/com/trilead/ssh2/SFTPv3Client.java on lines 658..705

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 234.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method receiveLoop has 87 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public void receiveLoop() throws IOException
    {
        byte[] msg = new byte[35004];

        while (true)
Severity: Major
Found in src/main/java/com/trilead/ssh2/transport/TransportManager.java - About 3 hrs to fix

    Method sendMessage has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

        public void sendMessage(byte[] message, int off, int len, int padd) throws IOException
        {
            if (padd < 4)
                padd = 4;
            else if (padd > 64)
    Severity: Minor
    Found in src/main/java/com/trilead/ssh2/transport/TransportConnection.java - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method addIdentity has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

        private void addIdentity(TypesReader tr, boolean checkConstraints) {
            try
            {
                if (failWhenLocked())
                    return;
    Severity: Minor
    Found in src/main/java/com/trilead/ssh2/channel/AuthAgentForwardThread.java - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method receiveFiles has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

        private void receiveFiles(Session sess, OutputStream[] targets) throws IOException
        {
            byte[] buffer = new byte[8192];
    
            OutputStream os = new BufferedOutputStream(sess.getStdin(), 512);
    Severity: Minor
    Found in src/main/java/com/trilead/ssh2/SCPClient.java - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method scanDirectory has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        private final Vector scanDirectory(byte[] handle) throws IOException
        {
            Vector files = new Vector();
    
            while (true)
    Severity: Minor
    Found in src/main/java/com/trilead/ssh2/SFTPv3Client.java - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method sendData has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        public void sendData(Channel c, byte[] buffer, int pos, int len) throws IOException
        {
            while (len > 0)
            {
                int thislen = 0;
    Severity: Minor
    Found in src/main/java/com/trilead/ssh2/channel/ChannelManager.java - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method handleMessage has 81 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public void handleMessage(byte[] msg, int msglen) throws IOException
        {
            if (msg == null)
            {
                if (log.isEnabled())
    Severity: Major
    Found in src/main/java/com/trilead/ssh2/channel/ChannelManager.java - About 3 hrs to fix

      Method connect has 80 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public synchronized ConnectionInfo connect(ServerHostKeyVerifier verifier, int connectTimeout, int kexTimeout)
                  throws IOException
          {
              final class TimeoutState
              {
      Severity: Major
      Found in src/main/java/com/trilead/ssh2/Connection.java - About 3 hrs to fix

        Method desFunc has 79 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected void desFunc(int[] wKey, byte[] in, int inOff, byte[] out, int outOff)
            {
                int work, right, left;
        
                left = (in[inOff + 0] & 0xff) << 24;
        Severity: Major
        Found in src/main/java/com/trilead/ssh2/crypto/cipher/DES.java - About 3 hrs to fix

          Method getChannelData has 79 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public int getChannelData(Channel c, boolean extended, byte[] target, int off, int len) throws IOException
              {
                  int copylen = 0;
                  int increment = 0;
                  int remoteID = 0;
          Severity: Major
          Found in src/main/java/com/trilead/ssh2/channel/ChannelManager.java - About 3 hrs to fix

            Method msgChannelOpen has 79 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public void msgChannelOpen(byte[] msg, int msglen) throws IOException
                {
                    TypesReader tr = new TypesReader(msg, 0, msglen);
            
                    tr.readByte(); // skip packet type
            Severity: Major
            Found in src/main/java/com/trilead/ssh2/channel/ChannelManager.java - About 3 hrs to fix

              Method createAttrs has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
              Open

                  private byte[] createAttrs(SFTPv3FileAttributes attr)
                  {
                      TypesWriter tw = new TypesWriter();
              
                      int attrFlags = 0;
              Severity: Minor
              Found in src/main/java/com/trilead/ssh2/SFTPv3Client.java - About 3 hrs to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Method openConnection has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
              Open

                  @Override
                  public Socket openConnection(String hostname, int port, int connectTimeout) throws IOException {
                      Socket sock = new Socket();
              
                      InetAddress addr = InetAddress.getByName(proxyHost);
              Severity: Minor
              Found in src/main/java/com/trilead/ssh2/HTTPProxyData.java - About 3 hrs to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Method openConnection has 77 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  @Override
                  public Socket openConnection(String hostname, int port, int connectTimeout) throws IOException {
                      Socket sock = new Socket();
              
                      InetAddress addr = InetAddress.getByName(proxyHost);
              Severity: Major
              Found in src/main/java/com/trilead/ssh2/HTTPProxyData.java - About 3 hrs to fix

                Method parsePEM has 75 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public static final PEMStructure parsePEM(char[] pem) throws IOException
                    {
                        PEMStructure ps = new PEMStructure();
                
                        String line = null;
                Severity: Major
                Found in src/main/java/com/trilead/ssh2/crypto/PEMDecoder.java - About 3 hrs to fix

                  Method decryptData has 74 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      private static byte[] decryptData(byte[] data, byte[] pw, byte[] salt, int rounds, String algo) throws IOException
                      {
                          BlockCipher bc;
                          int keySize;
                  
                  
                  Severity: Major
                  Found in src/main/java/com/trilead/ssh2/crypto/PEMDecoder.java - About 2 hrs to fix
                    Severity
                    Category
                    Status
                    Source
                    Language