Giter Club home page Giter Club logo

Comments (3)

WhereIsOops avatar WhereIsOops commented on June 25, 2024 3

@WhereIsOops could you please re-format your Comments to use proper code tags? This would be the correct markdown syntax to use:

def encode(self, value, mutation_context):
    # rest...

Thank you!

def encode(self, value, mutation_context):
  if self.request is not None and self.block_name is not None:
      target_block = self.request.resolve_name(self.context_path,self.block_name)
      child_data = target_block.render(mutation_context=mutation_context)
      remainder = len(child_data) % self._modulus
      if remainder != 0:
          padding_length = self._modulus - (len(child_data) % self._modulus)
          a, b = divmod(padding_length, len(self._pattern))
          return self._pattern * a + self._pattern[:b]
      else:
          return b""
  else:
      return

The alignment primitive is not a request class object and does not have the children parameter during initialization. Therefore, its stack is empty. Therefore, the get_child_data method cannot be used.

from boofuzz.

WhereIsOops avatar WhereIsOops commented on June 25, 2024

Let me add a little more,
def encode(self, value, mutation_context): if self.request is not None and self.block_name is not None: target_block = self.request.resolve_name(self.context_path,self.block_name) child_data = target_block.render(mutation_context=mutation_context) remainder = len(child_data) % self._modulus if remainder != 0: padding_length = self._modulus - (len(child_data) % self._modulus) a, b = divmod(padding_length, len(self._pattern)) return self._pattern * a + self._pattern[:b] else: return b"" else: return
When modal, we should add a judgment that the calculation result is 0 ,which means that the data is already aligned at this time.

from boofuzz.

hackathi avatar hackathi commented on June 25, 2024

@WhereIsOops could you please re-format your Comments to use proper code tags? This would be the correct markdown syntax to use:

```python
def encode(self, value, mutation_context):
    # rest...
```
Thank you!

from boofuzz.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.